我的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);
希望尽快找到解决方案。
谢谢!