0

Apex Launcher のスキンをコーディングしようとしていますが、問題が発生したようです。いくつかの画像を正常に追加しましたが、現在、Authenticator と Google カレンダーのアイコンを追加しようとしています。

文字列を iconpack.xml に追加してから、以下の appfilter.xml に追加しました。カレンダーまたはオーセンティケーターを機能させることができません。Play ストアのアイコンを Authenticator に使用しようとしているアイコンに設定すると、アイコンが表示されます。Apex Launcher からのアクティビティを見て、Google で検索したので、アクティビティが正しいことを 100% 確信しています。

助言がありますか?

<!-- 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" />    
4

1 に答える 1

0

オーセンティケーターには、次のものを使用する必要がありました。

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

「2」が 1 つだけ追加されていることに注意してください。

私はまだGoogleカレンダーを自分で理解できません。

于 2013-02-05T05:50:31.237 に答える