There is an AsyncTask that fetches something from the web and then calls Activity.showDialog in onPostExecute(...). What exactly happens if
- I start AsyncTask in Activity B
- Go back to Activity A
- AsyncTask finishes it's job (doInBackground() returns)
? Is onPostExecute() called?