Declare global variables:
int index = 0;
ListView list;
and make a reference to your ListView
in onCreate()
:
list = (ListView) findViewById(R.id.my_list);
Next, in onResume()
, add this line at the end:
list.setSelectionFromTop(index, 0);
Lastly, in onPause
, add the following line to the end:
index = list.getFirstVisiblePosition();