Is it possible to cancel/stop a download started using DownloadManager?

只愿长相守 提交于 2019-12-03 03:16:09

问题


I am using DownloadManager to download a bunch of files in my application. I am not able to figure out how to cancel the downloads which has been enqueued by downloadManager.

There are two possibilities: a. User can manually cancel it say by clicking it in the notification bar. b. Cancel and remove the download through code.

I have the following receiver defined.

<receiver 
        android:name=".DownloadStatusReceiver"
        android:exported="true">
        <intent-filter>
            <action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
            <action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED" />
     </intent-filter>
 </receiver> 

And in the receiver

if (DownloadManager.ACTION_NOTIFICATION_CLICKED.equals(action)) {

    Constants.showLog(TAG, "Notification clicked");
    long downloadId = intent.getLongExtra(DownloadManager.EXTRA_DOWNLOAD_ID, 0);
    DownloadManager dm =(DownloadManager)context.getSystemService(Context.DOWNLOAD_SERVICE);             
    dm.remove(downloadId);

}

Any insights?


回答1:


You can cancel downloads via DownloadManager by calling its remove(long...) method. For this you need the ID of the download. From my experience there basically are two reliable ways how to get it:

  1. Remember the return value of enqueue(DownloadManager.Request) method.
  2. Query the DownloadManager for downloads via query(DownloadManager.Query) method. Then retrieve the IDs from the returned Cursor, they are stored in the column named DownloadManager.COLUMN_ID.

Broadcast Receiver

From my experience, it is not reliable to retrieve download ID via BroadcastReceiver for action android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED (though the broadcast is always sent).

  1. Getting download IDs from extra DownloadManager. EXTRA_NOTIFICATION_CLICK_DOWNLOAD_IDS does not work properly. On some devices, it always return null. If it returns something on some devices, it is the ID of the download started first. And if the first download is finished/canceled, it returns null for notification of the remaining downloads.
  2. Getting a value from extra DownloadManager.EXTRA_DOWNLOAD_ID does not work for this action.

Getting ID in broadcast for action android.intent.action.DOWNLOAD_COMPLETE seems reliable. You have to get it from extra DownloadManager.EXTRA_DOWNLOAD_ID. Note that the broadcast is sent not only for completed download, it is also sent when you cancel download calling remove().

Note: Downloads are sometimes grouped in one notification, sometimes create multiple notifications. I wasn't able to figure out the conditions when notifications do and do not group. It seems to depend on many factors like OS version, device, download title, ... and in general seems rather unpredictable.

Note: I've tested whether you can cancel other app's download and it doesn't seem so. Even though that the IDs are database IDs that are unique across all apps. Calling remove() does not cancel another app's download.



来源:https://stackoverflow.com/questions/14073323/is-it-possible-to-cancel-stop-a-download-started-using-downloadmanager

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!