I am trying to get this(switching between multiple activities) from many days...atlast i tried to do it using intent flags
Intent intent = new Intent(getApplicationContext(),Act1.class);
if(a1) // a1 is set true during oncreate of act1
intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
startActivity(intent) ;
Will this work ?? Or any other ways ?? I am not getting here. what i exactly needed