I have an activity that transfers several loading processes to the IntentService queue. Now I would like to show a list of pending and started downloads and a button to stop the download.
on this issue By asking for an IntentService to get information about my queue , I started implementing an external queue, but I donβt know yet how to stop a specific task.
Are there any better ways to manage an IntentService queue?
Register BroadCastReceiver ("stopUpload") in your IntentService to stop loading when this intention is received. Run this intent from your sendBroadcast activity ("stopUpload").
Are you better off not working with the service and AsyncTasks?