Reputation: 1291
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.
Upvotes: 54
Views: 58145
Reputation: 11558
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.
Upvotes: 2
Reputation: 3456
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);
}
Upvotes: 0
Reputation: 29713
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>
Upvotes: 31
Reputation: 12181
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.
Upvotes: 5
Reputation: 2303
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);
Upvotes: 1
Reputation: 411
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?
Upvotes: 3
Reputation: 451
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);
Upvotes: 6
Reputation: 66
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
Upvotes: 1
Reputation: 523
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);
Upvotes: 42
Reputation: 93511
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.
Upvotes: 36