Android download queue using DownloadManger

北城以北 提交于 2019-12-19 03:59:29

问题


I'm using DownloadManager to download my files in android and its great since it handles everything (connectivity lost, retry, etc.) The problem is I want my file to be downloaded in queue one after another and as far as i know DownloadManager doesn't provide this functionality. So multiple call to DownloadManager.enqueue(...) results in concurrent download of all the files. How can i fix this?

I can not just make a queue in my activity and send downloads to DownloadManger one by one since activity may be destroyed at any time!

Also IntentService doesn't work here!! even though it handles request one by one, call to DownloadManager.enqueue() will run so fast and then the next call and the result would be concurrent download again!

My third option is to use LocalService that gets the request and calls DownloadManager.enqueue() when the previously started download is finished but how should i do it? my service needs to get request form my activity even when its running! (so i can't just put data in intent). To enable communication i need to make it a bound service and as documentations says it destroys when there is nothing bind to it!

bound service runs only as long as another application component is bound to it. 
Multiple components can bind to the service at once, but when all
of them unbind, the service is destroyed.

So i lose my downloads that are in queue when my activity is closed. Am i right?

And there is final option which is using a service in separate process because even if my third option works it only downloads files as long as application is not closed. this option seems to be the scary one since i have to handle interprocess communication and i have no idea what that is!!

So am i missing something?! shouldn't it be an easier solution to my problem?

I just what to download files is queue! I also don't want my service to run indefinitely when there is nothing to download.


回答1:


Very simple:

1)Create a database and insert your url into it.

2)create a receiver for download complete action of downloadmanager in your manifest.

3)when received a download complete read a row from your database and start new download(enqueue).

happy coding:-)




回答2:


I found the answer! The problem with IntentService is it execute DownloadManager.engueue() so fast and as a result all download get downloaded together. So i made sure requests are not finished running until download is finished simply by calling wait() on background thread. and calling notify() when Broadcast onReceive is called and my download is finished!

I run this after downloding the file

    currentDownloadId = downloadManager.enqueue(downloadRequest);
    backgroundThread = Thread.currentThread();
    synchronized (Thread.currentThread()) {
        try {
            Thread.currentThread().wait();
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }

and when download is finished i run this

@Override
public void onReceive(Context context, Intent intent) {
    long downloadId = intent.getLongExtra(DownloadManager.EXTRA_DOWNLOAD_ID,0);
    if (downloadId == currentDownloadId) {
        synchronized (backgroundThread) {
            backgroundThread.notify();
        }
    }
}

now execution of current download gets finished and next one begans automatically!



来源:https://stackoverflow.com/questions/27590160/android-download-queue-using-downloadmanger

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