How do I download multiple files in a queue one by one! I\'m using this as a sample code, since.
I would be passing the URLs to download in Strings from my local DB dynamic
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.