I have currently some Activities in my stack, let's imagine:
A,B,C,D,E.
I am in Activity E and my "up navigation" should bring Activity A to the front and finish (B,C,D).
I am currently working with:
case android.R.id.home:
Intent intent = new Intent(this, ActivityA.class);
intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
startActivity(intent);
finish();
return true;
This is nice and Activity A comes back in it's previous state, but (B,C,D) still exist.
Is there a way to correctly finish (B,C,D)?
Note: I am searching to avoid complicated stuff like onActivityResult that would be impossible to deal with in a complicated application structure
Thanks.
I think
FLAG_ACTIVITY_CLEAR_TOP
is what you need:Although if you want to reuse the existing instance of Activity A (via
onNewIntent()
) then you might also need to setFLAG_ACTIVITY_SINGLE_TOP
in the intent.