2013-01-23 73 views
0

我試圖爲Apex Launcher編寫皮膚,但似乎遇到了問題。我已成功添加了多個圖片,但我現在正在嘗試添加Authenticator和Google日曆圖標。Apex啓動器圖標停止工作?

我已經將字符串添加到iconpack.xml,然後將它們添加到appfilter.xml的下面。我無法使日曆或身份驗證器正常工作。如果我將Play商店圖標設置爲正在嘗試用於身份驗證器的那個圖標,它會顯示圖標。我100%確定我已經得到了正確的活動,因爲我已經查看了Apex Launcher的活動並已谷歌搜索。

有什麼建議嗎?

<!-- Authenticator --> 
<item component="ComponentInfo{com.google.android.apps.authenticator/com.google.android.apps.authenticator.AuthenticatorActivity}" drawable="com_android_auth" />  

<!-- Play Store --> 
<item component="ComponentInfo{com.android.vending/com.android.vending.AssetBrowserActivity}" drawable="com_android_store" /> 

<!-- Calendar --> 
<item component="ComponentInfo{com.android.calendar/com.android.calendar.LaunchActivity}" drawable="com_android_calendar" />  

回答

0

對於認證,我不得不使用以下命令:

com.google.android.apps.authenticator2/com.google.android.apps.authenticator.AuthenticatorActivity

注意添加只有一個 「2」。

我仍然無法自己找出Google日曆。