【发布时间】:2016-01-09 12:56:55
【问题描述】:
我有一个带有意图过滤器的应用程序,可以打开一些网页网址。它适用于以下意图过滤器的链接(www.butterflytv.net/player.php?streamUrl=...)
<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="www.butterflytv.net"
android:pathPattern="/player.php.*"
android:scheme="http" />
<data
android:host="butterflytv.net"
android:pathPattern="/player.php.*"
android:scheme="http" />
</intent-filter>
但是,当此链接位于推文中时,Twitter 应用内浏览器会打开该链接。我希望 Android 打开一个应用程序选择器来打开链接。你知道怎么做吗?
提前谢谢你, A.奥古兹
【问题讨论】: