我想打开应用程序当用户尝试从Android手机打开网站时,我正在使用深层链接`
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http"
android:host="host name"
android:path="/search" />
</intent-filter>`
使用路径属性,但如果没有路径属性,则无效。
答案 0 :(得分:1)
尝试
<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"></data>
<data android:scheme="https"></data>
<data android:host="host"></data>