我想编写一个应用程序,允许我从手机远程开始在桌面上下载torrent。如何更改android以打开我的应用程序的磁铁链接?我正在尝试找到一个非浏览器特定的解决方案,可以在安装时执行而无需用户进行设置。
编辑:
这样的东西?
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="magnet" />
<data android:host="*" />
<data android:mimeType="application/myApp" />
</intent-filter>
答案 0 :(得分:0)
我正在尝试找到一个非浏览器特定的解决方案,可以在安装时执行而无需用户进行设置。
我不太确定我明白你究竟想用链接做什么。但我可以告诉你,它可能不会像你想要的那样在任何股票设备上运行。系统中没有任何机制让您的应用程序在安装后立即开始执行任何操作。至少用户将不得不选择使用您的应用程序来处理您试图覆盖的任何链接。