我已经创建了自己的应用,我希望这个应用成为我的发射器。它是一个简单的应用程序,但它可以工作。
是否可以用我的应用程序替换默认启动器,以便我的应用程序在启动后始终默认启动?
答案 0 :(得分:24)
在清单中设置正确的意图过滤器将允许它提示您将其用作替代:
<activity android:name="Home"
...
android:launchMode="singleInstance"
android:stateNotNeeded="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.HOME"/>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
请参阅Google的Intents and Intent Filters文档。
答案 1 :(得分:3)