I'm going nuts here. I want a simple thing - I have a long task (fetching several data objects from the web) and I want the ability to cancel it. I tried a lot of things (a lot) and nothing works
The flow goes like this:
the user click on a button
I start the work (I tried with
AsyncTask,Service,IntentServiceandLooper)the task takes care of everything including adding ongoing notification for progress updates
the intent in the notification has a call for a new activity that her only purpose is to cancel the ongoing task
in the cancelActivity I tried to call
stopService()for Service/IntentService or doLooper.quit()for the Looper (I don't remember what I tried for AsyncTask, not sure if there is such api for canceling it)
In my point of view the best option will be using IntentService (I could have several task lining up and IntetService will do it in order like I want) but
I'm open to suggestions for any type of implementation - I don't care what the code will be, just that I will have the option to cancel the task
Thank you in advance for your help
Dror
(I'm off to bed - 8 hours on the same issue is just too much)