当用户在浏览器上重定向网址时,我想打开我的应用。
我的网址是:
http://www.subdomain.Domain.com/mytransactions
在manifest.xml
内我写了这个:
<activity android:name="*.*.*.MyTransactions" >
<intent-filter >
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.VIEW"/>
<data
android:host="www.domain.com"
android:scheme="mytransactions"
android:pathPrefix="/subdomain"/>
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</activity>
但是当我在浏览器上输入此网址时,我的应用无法启动。
答案 0 :(得分:0)
您需要在<data>
<data
android:host="www.subdomain.Domain.com"
android:pathPrefix="/mytransactions"
android:scheme="http" />
您的代码存在的问题是您尚未定义scheme