as the questions title says - I need to know what is the best way to \"remove\"/destroy/finish an activity that are somewhere in the middle of stack and currently on pause
Intent myintent = new Intent(YourCurrentActivity.this, YourNextActivitys.class); myintent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); startActivity(myintent); finish();
I think this is the right way to clear all previous activities...