6

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 开发人员指南,但没有得到任何解决方案,任何人都可以解释一下吗?

4

1 回答 1

0

此应用程序具有针对不同启动器的所有意图过滤器,并且将根据该意图执行操作。这些是由启动器定义的<action android:name="com.gau.go.launcherex.theme" /> <category android:name="com.fede.launcher.THEME_ICONPACK" />并且您的应用程序会根据这些操作并在特定启动器触发意图时提供图标。

于 2013-09-10T06:17:16.767 回答