Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 android 应用程序中,我已成功下载 .torrent 文件,现在我想在 miutorrent(或其他 torrent 下载应用程序)中打开它们如何实现?任何帮助将不胜感激....
尝试使用 mime 类型启动一个意图application/x-bittorrent
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);