0

我正在尝试为 Apex Launcher 编写皮肤,但似乎遇到了问题。我已经成功添加了几张图片,但是我现在正在尝试添加 Authenticator 和 Google Calendar 图标。

我已将字符串添加到 iconpack.xml,然后将它们添加到 appfilter.xml 的下方。我无法让日历或身份验证器工作。如果我将 Play Store 图标设置为我试图用于 Authenticator 的图标,它会显示该图标。我 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" />    
4

1 回答 1

0

对于身份验证器,我必须使用以下内容:

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

注意只添加了一个“2”。

我自己仍然无法弄清楚谷歌日历。

于 2013-02-05T05:50:31.237 回答