Android Clear Middle Activities
Android Clear Middle Activities I have 5 Activities, A - Base Activity B,C,D - Normal Activities E - Final Activity A-B-C-D-E I navigate from A to B to C to D, D takes me to E. I want behaviour : if I press back button on D it should take me to C , back button from C should take me to B down to A. But if I have moved to Activity E from D, I want the back button from E it should take me to A skipping B,C and D. did you try overriding the onBackPressed in the Activity E to navigate you to A? – Muhannad Fakhouri Oct 30 '16 at 18:10 3 Answers 3 In E : E @Override public void onBackPressed() { Intent intent = new Intent(this, ActivityA.class); intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP) | Intent.FLAG_ACTIVITY_SINGLE_TOP); startActivity(int...
