I have some question about download multiple file using service in android. From google search, all are recommended intent service but in my case I have list of file in list view, if user select any file it will download with notification progress, If user press back button from activity service need to run background, User can select multiple file, in each file have individual notification bar for progress
My question is
If i choose intent service how can i pass File Url dynamically when user select the file, If i call start service with intent for each url it will not download parallel
If i choose service and bind it, from document bind service not help for long running
which method is best to achieve and how to i pass dynamic url into service and update the download url list
Thanks