Google Play 商店中有很多与启动器兼容的图标包,我只是想知道启动器如何访问和识别此类图标包以便反映到启动器。
我成功编写Icon pack
了链接到启动器的代码,但是ow launcher accessing such icon pack, so it will handle appropriate icon pack and get reflect to launcher?
图标包中的代码,定义必要的启动器包名称@
<!-- Go / Nova -->
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="com.gau.go.launcherex.theme" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<!-- LauncherPro / Holo -->
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.fede.launcher.THEME_ICONPACK" />
</intent-filter>
我遵循了 XDA 开发人员指南,但没有得到任何解决方案,任何人都可以解释一下吗?