我尝试使用指向电子邮件的链接启动我的Android应用程序。
https://hostname.com/somethingAndParameter
我的服务器将此链接重定向到:
myscheme://host
我试过这个意图过滤器,但它不起作用:
<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="host" android:scheme="myscheme"/>
</intent-filter>
答案 0 :(得分:0)
由于你不是通过评论来理解,我们试着回答......
将您的<intent-filter>
更改为:
<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="https"
android:host="hostname.com"
android:path="/somethingAndParameter"/>
</intent-filter>
现在,您的https://hostname.com/somethingAndParameter
网址适用于: