当用户像这样打开自定义网址时如何在没有对话框的情况下重定向我的应用程序(选择选项)
我试过在我的android清单中使用意图过滤器,像这样
<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="signin.ebay.com" android:pathPattern="/ws/eBayISAPI.dll?/ThirdPartyAuthSuccessFailure&isAuthSuccessful=true*"/>
<data
android:scheme="http"
android:host="signin.ebay.com" android:pathPattern="/ws/eBayISAPI.dll?/ThirdPartyAuthSuccessFailure&isAuthSuccessful=true*"/>
</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="signin.ebay.com" />
<data
android:scheme="http"
android:host="signin.ebay.com"/>
</intent-filter>
它的工作,但它显示对话框选择选项有时我打开浏览器的网址为https://signin.ebay.com或http://signin.ebay.com
用户打开网址时如何制作
他们将重定向到我的应用程序没有对话框选择选项,我的 tknexp 不是静态记住,谢谢