Android 6.0 - 卸载应用时删除外部存储文件

时间:2016-02-04 18:59:55

标签: android android-6.0-marshmallow download-manager android-external-storage

我的应用使用DownloadManager将文件下载到设备的音乐文件夹的子目录中。

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));

我注意到,当从运行Marshmallow的设备上卸载应用程序时,文件正在被删除(这在旧版操作系统版本中不会发生)。 你有什么想法吗?

由于

1 个答案:

答案 0 :(得分:5)

这是由名为DownloadReceiver的内部类完成的,并在com.android.providers.downloads package manifest

中定义
<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动作引人注目。它在Lollipop中引入,触发对handleUidRemoved()执行

的调用
resolver.delete(ALL_DOWNLOADS_CONTENT_URI, Constants.UID + "=" + uid, null);