Download queue in Android

前端 未结 4 518
一生所求
一生所求 2021-02-02 03:22

What\'s the best way to implement a download queue in Android?

I suspect there might be some platform classes that might do most of the work.

4条回答
  •  心在旅途
    2021-02-02 03:36

    Using an IntentService will make it quite difficult to support cancellation. It's just something you need to be aware of. If you can, it's API Level 9, you will be better of using http://developer.android.com/reference/android/app/DownloadManager.html

提交回复
热议问题