I have a ListView activity that start a new intent.
When Back pressed from the new intent we get back to the listview.
How do I keep the ListView without getting its items again?
E.g. it is having ArrayAdapter….. that is filled from the net using some queries.
Can be in the list 100+ items.
Yoav
I think that Android stores activities by default in one task (until you use special flags to start activity. More). This means that if you press back button it should be filled in with the same data. But in this case it depends in which method you fill ListView. If you do this in onResume() then the ListView will be filled in all the time. If you do this in onCreate() then the ListView will be filled only if the activity is created for the first time.