Download queue in Android

前端 未结 4 519
一生所求
一生所求 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

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

    Use an IntentService. It supplies the queue and the background thread for you, so all you have to do is put your download logic in onHandleIntent(). See here for a sample project demonstrating this.

提交回复
热议问题