besam
besam

Reputation: 155

Getting message when downloading has been completed

I'm trying to use android default download manager in my app, but problem is that i don't get any message in my app when download has been completed. Is there any way to solve this problem?

Upvotes: 9

Views: 214

Answers (1)

Opiatefuchs
Opiatefuchs

Reputation: 9870

You need to register a BroadcastReceiver to know when it is completed:

    registerReceiver(completionReceiver, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));

The Receiver:

    BroadcastReceiver completionReceiver = new BroadcastReceiver() {
public void onReceive(Context ctxt, Intent intent) {

     //here You know the download is complete, do whatever You want to do
}
   };

Upvotes: 5

Related Questions