我想在浏览器中单击url时打开Android应用,为此我在清单中使用uri方案在以下清单中实现了意图过滤器-
<intent-filter>
<data android:host="www.myweb.com" android:scheme="https"/>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
[当用户在浏览器或whatsapp或facebook上单击www.myweb.com时,将打开移动浏览器,而不是android应用。以上代码中我有做错什么吗?任何帮助。
通过单击“ +