Search code examples
javaandroidandroid-activityactivity-stack

Clear ALL activities in back stack


I have this stack:

Login Activity -> Registration Activity

After a successful registration I call this:

Intent i = new Intent(getApplicationContext(),Home.class);
i.addFlags( Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK );
startActivity(i);
finish();

And this finish my Registration activity BUT not my Login activity, so my stack stay like this:

Login Activity -> Home Activity

Any advice?


Solution

  • Well, i ended up using this answer

    Clear the entire history stack and start a new activity on Android

    And that do exactly what Im trying to do