I have this little problem.
I fetch data from network into a ListView using AsyncTask. If I press on an item it takes me to another activity. Then, if I press the 'back' button, the AsyncTask does not execute again. (Which is exactly what I want).
The problem is, if on the ListView I press the back button, and then I get into the listView activity again, the AsyncTask executes again.
I'm not sure if this is happening because the Listview's activity destroys and loses all reference, or if because onResume (I think) is recalling onCreate.