检查应用程序是否已安装以在Android中进行深层链接

时间:2018-07-31 10:49:24

标签: android deep-linking deeplink

我能够通过简单的html页面使用深层链接。通过html页面上的代码

<!DOCTYPE html>
<html>
<head>
    <title>test deep</title>
</head>
<body>
<a href="https://www.google.com">click here </a>

</body>
</html>

如何根据搜索结果检查应用程序是否已安装并打开。当我尝试单击Google搜索结果中的相同链接时,它不起作用。 这是我的androidmenifest.xml文件代码

<intent-filter android:label="@string/app_name">
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <!-- Accepts URIs that begin with "example://gizmos” -->
    <data android:scheme="https"
          android:host="www.google.com"/>
</intent-filter>

0 个答案:

没有答案