如何为自定义标头设置主机名和方案 - 网址方案

时间:2014-11-26 14:59:02

标签: android url-scheme

我在服务器端有一个简单的页面,如下面的链接:

<button onclick="location.href='http://www.example.com/com.example.example://?status=true'">click me</button>

现在我想点击click me按钮,我的应用程序就会打开。

但是如何在manifest.xml中设置data标记?


        <intent-filter >
            <category android:name="android.intent.category.DEFAULT" />
            <action android:name="android.intent.action.VIEW"/>
            <data android:host="http://www.example.com" android:scheme="com.example.example"/>
            <category android:name="android.intent.category.BROWSABLE" />
        </intent-filter>

已更新:

        <intent-filter >
            <category android:name="android.intent.category.DEFAULT" />
            <action android:name="android.intent.action.VIEW"/>
            <data android:path="/com.example.example" android:scheme="http" android:host="www.example.com" />
            <category android:name="android.intent.category.BROWSABLE" />
        </intent-filter>

点击click me后,什么也没发生。


更新

        <intent-filter >
            <category android:name="android.intent.category.DEFAULT" />
            <action android:name="android.intent.action.VIEW"/>
            <data android:path="/com.shadyab.shadyab" android:scheme="http" android:host="www.shadyab.com" />
            <category android:name="android.intent.category.BROWSABLE" />
        </intent-filter>

1 个答案:

答案 0 :(得分:1)

scheme httphostwww.example.com,我不知道您的原因。在主持人来到path之后。

之间可以使用一个
  android:path="string"
  android:pathPattern="string"
  android:pathPrefix="string"