How to clear the Android Stack of activities?

AndroidAndroid ActivityStackBack Stack

Android Problem Overview


I have an application with several Activities in Android and I want the user to be able to log-out by pressing a menu button. The problem I have is that

A) Android doesn't let you terminate the application and
B) even when I send the user to the LoginActivity again they can always press back and get right back to the previous activity they were in.

I already tried to launch the Activity with the two following flags:

Intent intent  = new Intent(this, LoginActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);    	
startActivity(intent);

I also tried with each one of them by themselves.

I also tried calling finish() after startActivity(intent) as I read in another StackOverflow question.

Android Solutions


Solution 1 - Android

This should be bitwise OR'd or you end up overwriting the earlier flag.

intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

Like so:

intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);

Solution 2 - Android

In your login activity, override the back button, so it hides your app instead of finishing the activity:

@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
    if (keyCode == KeyEvent.KEYCODE_BACK) {
        moveTaskToBack(true);
        return true;
    }
    return super.onKeyDown(keyCode, event);
}

Also be sure to set android:alwaysRetainTaskState="true" on the root activity, so Android doesn't clear your stack (including the login activity) after 30min of inactivity from user.

Then just call finish() when there is a successful login.

Solution 3 - Android

As per Wakka in Removing an activity from the history stack...


Add android:noHistory="true" attribute to your <activity> in the AndroidManifest.xml like this:

<activity android:name=".MyActivity"
    android:noHistory="true">
</activity>

Solution 4 - Android

If you are using Android API 11 or above, you can use the following code to clear the stack.

intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);

Solution 5 - Android

This wont clear your activity back stack.

Even after following all the above answer, when I pressed the back button It showed the last activity for a second before closing the app.

This is what I did:

@Override
public void onBackPressed() { 
    Intent startMain = new Intent(Intent.ACTION_MAIN);
    startMain.addCategory(Intent.CATEGORY_HOME);
    startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    startActivity(startMain);
}

Now my app exits on back press :) without any hassle.

Solution 6 - Android

Setting Intent.FLAG_ACTIVITY_CLEAR_TOP has worked for me in a very similar case, where I didn't set the Intent.FLAG_ACTIVITY_NEW_TASK flag. Have you tried without?

Solution 7 - Android

This work for me :)

Intent main = new Intent(this, A_Activity.class);
main.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
	| Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(main);

Intent tool = new Intent(this, B_Activity.class);
startActivity(tool);
finish();

Where A is my root activity for example

I have activities A -> B -> C -> D when I call start activity E on stack I have now A -> E

I don't know is it good :) but works.

Solution 8 - Android

Intent intent  = new Intent(this, LoginActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);        
startActivity(intent);

write this and note: LoginActivity must be launched first as Launcher and

if you write any launcher modes the flags are overwritten its purpose, so remove the launchermode and try you will surely get it

Solution 9 - Android

Try this

Intent intent = new Intent(this, MainActivity.class);
intent.addFlags(
    Intent.FLAG_ACTIVITY_CLEAR_TOP | 
    Intent.FLAG_ACTIVITY_CLEAR_TASK | 
    Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);

Solution 10 - Android

If we use this code to launch Login activity (A):

intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);

The activity should be in the stack of activities, otherwise this flags will not have any effect.

If we use finish() in the Login activity (A), after launching activity (B) (to avoid going back to A from B), the activity A (Login) will not be in the stack. Exactly the same happens when the login activity has "noHistory" as attribute.

So, the solution for me was a mix of other responses:

This code goes in the activity B, to avoid come back to the login activity:

@Override
public void onBackPressed() {
	moveTaskToBack(true);
	super.onBackPressed();
}

And this code goes in the activity which call the logout function:

public static void logout() {
	Intent intent = new Intent(activity, LoginMain.class);
	intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);
	startActivity(intent);
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionToticView Question on Stackoverflow
Solution 1 - AndroiddeweylewieView Answer on Stackoverflow
Solution 2 - AndroidTenfour04View Answer on Stackoverflow
Solution 3 - AndroidRichard Le MesurierView Answer on Stackoverflow
Solution 4 - AndroidmatangsView Answer on Stackoverflow
Solution 5 - AndroidamalBitView Answer on Stackoverflow
Solution 6 - AndroidBrandonView Answer on Stackoverflow
Solution 7 - AndroidGelldurView Answer on Stackoverflow
Solution 8 - AndroidAnand KumarView Answer on Stackoverflow
Solution 9 - AndroidRaghavendraView Answer on Stackoverflow
Solution 10 - AndroidMario VelascoView Answer on Stackoverflow