Skip to content

Instantly share code, notes, and snippets.

@ipereziriarte
Created December 4, 2012 11:14
Show Gist options
  • Save ipereziriarte/4202772 to your computer and use it in GitHub Desktop.
Save ipereziriarte/4202772 to your computer and use it in GitHub Desktop.
Android Restart Activity
private void restartFirstActivity() {
Intent i = getBaseContext().getPackageManager()
.getLaunchIntentForPackage(getBaseContext().getPackageName());
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment