点击网站链接后如何打开Android应用?

问题描述 投票:0回答:1

我想在浏览器中单击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应用。以上代码中我有做错什么吗?任何帮助。

android android-intent intentfilter url-scheme
1个回答
2
投票
转到工具> App Links助手。

通过单击“

+

© www.soinside.com 2019 - 2024. All rights reserved.