1

在我的 android 应用程序中,我已成功下载 .torrent 文件,现在我想在 miutorrent(或其他 torrent 下载应用程序)中打开它们如何实现?任何帮助将不胜感激....

4

1 回答 1

4

尝试使用 mime 类型启动一个意图application/x-bittorrent

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(TorrentUri, "application/x-bittorrent");
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivity(intent);
于 2016-03-27T11:27:41.307 回答