My android app uses AsyncTask to download some data from a website.
But when I press the back button of my android device immediately after the activity starts, worker thread's onPostExecute method is called, which is wierd because android called onDestroy method prior to onPostExecute and the onPostExecute
method runs on the main UIThread which I think doesn`t exist anymore.
Can anyone help me what I don`t understand?