gpt4 book ai didi

android磁力链接数据过滤器

转载 作者:行者123 更新时间:2023-11-30 04:04:35 26 4
gpt4 key购买 nike

当用户在浏览器中选择磁力链接时,我想从我的应用启动一个 Android Activity 。

根据docs ,

A URI is specified by separate attributes for each of its parts:
scheme://host:port/path or pathPrefix or pathPattern

磁力链接的问题在于它们具有不同的模式,例如 magnet:?xt=.....

我试过这样的东西

<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="magnet"
android:host="*"
/>
</intent-filter>

但它不起作用(当我在浏览器中打开磁力链接时, Activity 没有启动)。你能帮我正确声明磁力链接的 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:scheme="magnet"
/>
</intent-filter>

基本上,我删除了 android:host

关于android磁力链接数据过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11948244/

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