gpt4 book ai didi

android - Android 应用内浏览器的推特禁用打开与 native 应用程序的链接

转载 作者:太空宇宙 更新时间:2023-11-03 11:06:22 24 4
gpt4 key购买 nike

我有一个带有 intent 过滤器的应用程序,可以打开一些 web url。它适用于链接 (www.butterflytv.net/player.php?streamUrl=...) 和下面的 Intent 过滤器

<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. 奥古兹

最佳答案

使用此代码:

startActivity(Intent.createChooser(sharingIntent, "Share using"));

这将让您选择打开链接的应用程序。

关于android - Android 应用内浏览器的推特禁用打开与 native 应用程序的链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33074472/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com