我的应用使用下载管理器将文件下载到设备的"音乐"文件夹的子目录中。
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));
...
File file = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_MUSIC) + "/MyStuff/song.mp3");
request.setDestinationUri(Uri.fromFile(file));
我注意到从运行棉花糖的设备卸载应用程序时,文件将被删除(这在较旧的操作系统版本上不会发生)。你对此有什么想法吗?
谢谢
这是由一个名为 DownloadReceiver 的内部类完成的,并在com.android.providers.downloads
包清单中定义
<receiver android:name=".DownloadReceiver" android:exported="false">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
<action android:name="android.intent.action.UID_REMOVED" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MEDIA_MOUNTED" />
<data android:scheme="file" />
</intent-filter>
</receiver>
在这里,android.intent.action.UID_REMOVED
动作引人注目。它是在棒棒糖中引入的,触发了对handleUidRemoved()
表演的调用
resolver.delete(ALL_DOWNLOADS_CONTENT_URI, Constants.UID + "=" + uid, null);