I have an activity and it has two listview. First listview has musics. Second listview shows downloading items and each downloading item shows progress bar for download percent. If user click music item, I add an downloading item to second listview and start download file with AsyncTask. User can click more than one music, it means downloading multiple files simultaneously. I can download files with AsyncTask. But I want to download files in service because of downloads must continue even application close.
I dont know how can I download multiple files simultaneously with service. Which steps should I follow? Is there any tutorial for this?