我在服务器端有一个简单的页面,如下面的链接:
<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>
答案 0 :(得分:1)
scheme
http
而host
是www.example.com
,我不知道您的原因。在主持人来到path
之后。
android:path="string"
android:pathPattern="string"
android:pathPrefix="string"