Skip to content

Instantly share code, notes, and snippets.

@gorrotowi
Created August 22, 2016 13:15
Show Gist options
  • Save gorrotowi/329063ac5aa805882ea0ec935f6d4ef6 to your computer and use it in GitHub Desktop.
Save gorrotowi/329063ac5aa805882ea0ec935f6d4ef6 to your computer and use it in GitHub Desktop.
How to clear activity stack
Intent intent = new Intent(theContextClass.this, YourClass.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_CLEAR_TASK | 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