使用Intent Filter的Android开放应用链接不起作用

时间:2017-02-09 16:57:11

标签: android android-studio android-intent deep-linking

我在我的清单中使用以下代码,当移动设备中的任何来源尝试打开相关网址时向用户显示该选项,但它会自动打开网络浏览器,而不是在选项中显示我的应用程序。 可能是什么问题?

<activity android:name=".VisitWebPage" >
            <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:scheme="http" />
                <data android:scheme="https" />
                <data android:host="www.mysite.com" />
                <data android:pathPattern="/.*" />
             </intent-filter>
        </activity>

2 个答案:

答案 0 :(得分:1)

您可以尝试将数据标记更改为:

    <data android:scheme="http"
          android:host="www.mysite.com" />
    <data android:scheme="https"
          android:host="www.mysite.com" />

答案 1 :(得分:0)

你必须这样使用,它为我工作。

<activity
                android:name=".MainActivity"
                android:screenOrientation="portrait">
                <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="mysite.com"
                    android:pathPrefix="/m/showroom/mypage"
                    android:scheme="http" />
            </intent-filter>
        </activity>