I have an AsyncTask that handles a fairly long download using HttpClient. I would like to stop executing this request if the user completes an action that launches it. How can I achieve this?
So, I started AsyncTask, the HttpClient is in execute (), processing the GET request, is there any way to abort this?
source
share