Android 深层链接问题
Android deep linking issue
我尝试打开时遇到问题 <a href="tohome://print?https://qcblob.blob.core.windows.net/testing/LabelTesting/label_sample2.png">items</a>
这个 link 打不开应用程序。
我的清单文件:
<activity
android:name=".Main2Activity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:host="print?" android:scheme="tohome"/>
</intent-filter>
</activity>
如果这是目标link
tohome://print?https://qcblob.blob.core.windows.net/testing/LabelTesting/label_sample2.png
那么你的 host
在这种情况下就是 print
.
<data android:host="print" android:scheme="tohome"/>
一个典型的URL将遵循以下格式
scheme:[//[user:password@]host[:port]][/]path[?query][#fragment]
在此格式中,?
字符将作为分隔主机和实际查询字符串的分隔符。
我尝试打开时遇到问题 <a href="tohome://print?https://qcblob.blob.core.windows.net/testing/LabelTesting/label_sample2.png">items</a>
这个 link 打不开应用程序。
我的清单文件:
<activity
android:name=".Main2Activity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:host="print?" android:scheme="tohome"/>
</intent-filter>
</activity>
如果这是目标link
tohome://print?https://qcblob.blob.core.windows.net/testing/LabelTesting/label_sample2.png
那么你的 host
在这种情况下就是 print
.
<data android:host="print" android:scheme="tohome"/>
一个典型的URL将遵循以下格式
scheme:[//[user:password@]host[:port]][/]path[?query][#fragment]
在此格式中,?
字符将作为分隔主机和实际查询字符串的分隔符。