Android深度链接具有多个查询参数

问题描述 投票:36回答:4

我正在尝试深层链接我的应用程序并在我的AndroidManifest.xml中实现了以下内容以打开正确的活动。

<activity
    android:name=".ui.activities.MyActivity"
    android:label="@string/title_activity"
    android:screenOrientation="portrait">
    <!-- ATTENTION: This intent was auto-generated. Follow instructions at
    https://g.co/AppIndexing/AndroidStudio to publish your Android app deep links. -->
    <intent-filter>
        <action android:name="android.intent.action.VIEW" />

        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />
        <!-- ATTENTION: This data URL was auto-generated. We recommend that you use the HTTP scheme.
        TODO: Change the host or pathPrefix as necessary. -->
        <data
            android:host="myHost"
            android:scheme="myCustomScheme" />
    </intent-filter>
</activity>

我正在使用adb测试活动

adb shell am start -W -a android.intent.action.VIEW -d "myCustomScheme://myHost?key=category_parent_id&value=92&title=test" com.myApp.android

Activity正在打开,但只传递给intent中活动的URI

myCustomScheme://myHost?key=category_parent_id

它在“&”后跳过一切

我确实在SO上查找但没有找到任何有多个查询参数的东西。

android adb deep-linking
4个回答
86
投票

在使用adb进行测试时,只需在\签名之前添加&

复制这个:

adb shell am start -W -a android.intent.action.VIEW -d "myCustomScheme://myHost?key=category_parent_id\&value=92\&title=test" com.myApp.android


14
投票

您可以使用简单的引号包装shell命令(以避免修改uri内容):

adb shell 'am start -d "myCustomScheme://myHost?key=category_parent_id&value=92&title=test"'

1
投票

对于使用android studio的osx / mac用户

加载adb

export PATH="/Users/your_user/Library/Android/sdk/platform-tools":$PATH

检查应用是否已被识别

adb shell am start -n com.package/.activities_package_name.MainActivity

测试深层链接

adb shell 'am start -W -a android.intent.action.VIEW -d "myCustomScheme://myHost?key=category_parent_id\&value=92\&title=test" com.myApp.android'

别忘了''


-1
投票

只需对您的网址参数进行编码即可。它可能是谷歌的解析错误。

之前:

adb shell am start -W -a android.intent.action.VIEW -d "myCustomScheme://myHost?key=category_parent_id&value=92&title=test" com.myApp.android

后:

adb shell am start -W -a android.intent.action.VIEW -d "myCustomScheme://myHost?key%3Dcategory_parent_id%26value%3D92%26title%3Dtest" com.myApp.android
© www.soinside.com 2019 - 2024. All rights reserved.