我想点击浏览器中的链接打开启动器或Android应用程序

时间:2017-03-01 10:56:55

标签: android

我已经尝试了许多解决方案,在浏览器中点击链接打开应用程序,但没有什么对我有用。 我已经尝试过这样的解决方案。                

        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />

        <data
            android:host="example.com"
            android:pathPrefix="/someresource/"
            android:scheme="http" />
        <data
            android:host="www.example.com"
            android:pathPrefix="/someresource/"
            android:scheme="http" />
    </intent-filter>

请帮帮我。

1 个答案:

答案 0 :(得分:0)

try this its working code.
    <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="qa.mintshowapp.com"
                        android:pathPrefix="/m/showroom/mintdetaillanding"
                        android:scheme="http" />
                </intent-filter>
            </activity>