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

PravinCG picture PravinCG · Dec 28, 2012 · Viewed 22.4k times · Source

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?

Answer

Tomik picture Tomik · Dec 30, 2012

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.