Skip to content Skip to sidebar Skip to footer

Remove "start"-activity From The History

Possible Duplicate: Removing an activity from the history stack I am looking for a solution to remove the StartActivity from the history stack. The StartActivity is the one tha

Solution 1:

You can simply call finish() after you start the MainActivity.

Intent i = new Intent(context, DashBoardActivity.class);
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(i);
finish();

Solution 2:

You should use FLAG_ACTIVITY_NO_HISTORY when starting StartActivity to achieve described behaviour.

The same you may achieve if you set noHistory attribute to true in your AndroidManifest.xml.


Post a Comment for "Remove "start"-activity From The History"