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.
可能重复: 从 android 浏览器启动自定义 android 应用程序
当用户单击链接时,我希望我的应用程序显示在他可以打开应用程序的浏览器列表中。我应该在我的应用程序清单中写什么才能使它起作用?
将此添加到您的活动标签内的清单 xml 中:
<intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> </intent-filter>