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 developers Guide但没有得到任何解决方案,任何人都可以解决这个问题吗?
答案 0 :(得分:0)
此应用程序具有针对不同发射器的所有意图过滤器,并且将根据该意图进行操作。这些是由发射器<action android:name="com.gau.go.launcherex.theme" />
和<category android:name="com.fede.launcher.THEME_ICONPACK" />
定义的,您的应用程序会根据这些操作采取操作,并在特定启动器触发意图时提供图标。