0
votes
2answers
25 views

Semi-persisting data for one screen only

what Iam doing is a simple game which when beaten, goes to a new activity, there it starts a AsyncTask and submits user score to the server, server responds with a array of scores (few better than me, ...
2
votes
1answer
174 views

Is there a concurrency bug in AsyncTask?

I've run into a case where my activity was paused, and from the onPause() method I canceled my AsyncTask. However, my logs show the following events in chronological order: OnPause called AsyncTask ...
1
vote
2answers
158 views

Android Why OS issues onPause()

My Activity creates an AsyncTask that loads data from a file and updates the UI on onProgressUpdate(), classic book AsyncTask. But Android is putting the Activity onPause() right after the AsyncTask ...