AsynchTask got onPostExecute() method tied to UI thread. Assume that we close an activity by pressing back button while AsynchTask doInBackground() method is still in progress.
- I want to know will onPostExecute executes by considering that activity is not displaying on screen anymore?
- In case answer is yest, will it cause exceptions or not? (because of accessing UI objects which are not longer displayed on screen).