Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用我正在开发的普通应用程序作为启动器,因为它是设备上唯一运行的应用程序。我必须向我的应用程序添加什么?
谢谢, 亚尼克
使用此意图过滤器:
<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>