卸载App时,文件会被删除。 DownloadManager请求

时间:2017-11-25 19:43:12

标签: java android

我的Android应用程序正在将内容下载到设备。 它做得很好,但是当应用程序被卸载时,所有内容都会被删除,无论它保存在哪里。

这是我的代码:

DownloadManager.Request request = new DownloadManager.Request(uri);
    request.setTitle(downloadTitle);request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
    request.setDestinationInExternalPublicDir(locationString, fileName);
    request.setAllowedOverRoaming(false);

    DownloadManager manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
    return manager.enqueue(request);

希望尽快找到解决方案。

谢谢!

0 个答案:

没有答案