我正在使用开源项目下载文件
https://github.com/JiboStore/DownloadProvider
这个库工作正常,
例如,此代码以暂停/恢复功能开始下载和显示列表:
DownloadManager mDownloadManager = new DownloadManager(
getContentResolver(), getPackageName());
String url = "....";
Uri srcUri = Uri.parse(url);
DownloadManager.Request request = new Request(srcUri);
request.setDestinationInExternalPublicDir("MyApp" + File.separator
+ "Download",
"test.txt");
request.setDescription("For test");
request.setTitle("test.txt");
mDownloadManager.enqueue(request);
但我不知道如何在我的活动中使用暂停/恢复或访问诊断项目的下载内容列表已被暂停。
答案 0 :(得分:0)
您必须首先访问数据库中的downID,然后使用此处理暂停/恢复:
mDownloadManager.pauseDownload(downID);
mDownloadManager.resumeDownload(downID);