在 Android 中实现下载队列的最佳方式是什么?
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.
在 Android 中实现下载队列的最佳方式是什么?
What's the best way to implement a download queue in Android?
使用 IntentService
.它为您提供队列和后台线程,因此您只需将下载逻辑放在 onHandleIntent()
中.查看这里的示例项目来演示这一点.
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.
这篇关于Android中的下载队列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!