我尝试从浏览器打开我的应用程序,直到现在才能执行此操作。 我在网上找到了很多解决方案,并尝试让我的代码工作。添加此代码到我的清单文件,并尝试通过在Android默认浏览器上键入url从浏览器打开我的应用程序,但它不是要求任何对话框选择器,只是在浏览器上打开URL,请告诉我我做错了什么。请帮帮我。提前谢谢。
<intent-filter>
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:scheme="http" android:host="www.google.com"></data>
</intent-filter>
答案 0 :(得分:1)