Skip to content

Instantly share code, notes, and snippets.

@trevorrjohn
Created April 28, 2015 13:47
Show Gist options
  • Save trevorrjohn/b1d835957989c563f017 to your computer and use it in GitHub Desktop.
Save trevorrjohn/b1d835957989c563f017 to your computer and use it in GitHub Desktop.
android clear back stack of for next activity
Intent intent = new Intent(this, NextActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
finish();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment