I have two activities in tabgroup fist activity contains listview, when listitem click loading second activity.he my problem is when we press back in second activity first activity list is reloading again is it possible to stop reloading and i need to show listview in same position.
@Override
public void onBackPressed() {
// TODO Auto-generated method stub
super.onBackPressed();
}
using onbackpress for finish second activity.I had write loading data in oncreate() for listview,but here oncreate() is again calling.how to stop calling oncreate() when we come back.If anyone have idea please help me.