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>