深度链接查询参数

时间:2015-08-17 11:27:15

标签: android deep-linking

我有这个link,我想点击此网址链接特定活动。

我可以将“http://example.com”链接到我的应用程序,但是当我尝试在路径前缀中使用此查询参数时,它什么都没有返回。

我使用此intent-filter链接我的网址:

<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="example.com"
        android:scheme="http" 
        android:pathPrefix="/"/>
</intent-filter>

这里我不知道我的Url的路径前缀是什么。

1 个答案:

答案 0 :(得分:0)

它不能解决您的问题,但要测试您的URL,请尝试以下ADB命令:

adb shell 'am start -a android.intent.action.VIEW -c android.intent.category.BROWSABLE -d "http://example.com?path_resolution=xyz&city=abc"'