我能够通过简单的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>