0

我想编写一个应用程序,允许我从手机远程开始在我的桌面上下载种子文件。如何更改 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>
4

1 回答 1

0

我正在尝试找到一个非浏览器特定的解决方案,可以在安装时执行,而无需用户进行设置。

我不太确定我理解你到底想用链接做什么。但我可以告诉你,它可能不会在任何库存设备上按照你想要的方式工作。系统中没有任何机制可以让您的应用程序在安装后立即开始执行任何操作。至少用户将不得不选择使用您的应用程序来处理您尝试覆盖的任何链接。

于 2012-05-11T23:03:36.403 回答