作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当用户在浏览器中选择磁力链接时,我想从我的应用启动一个 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/
我是一名优秀的程序员,十分优秀!