Created
December 12, 2013 14:57
-
-
Save jgdoncel/7929300 to your computer and use it in GitHub Desktop.
Android: Reiniciar una aplicación
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Intent i = getBaseContext().getPackageManager().getLaunchIntentForPackage( getBaseContext().getPackageName() ); | |
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); | |
startActivity(i); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment