Skip to content

Instantly share code, notes, and snippets.

@julenka
Last active August 29, 2015 14:05
Show Gist options
  • Select an option

  • Save julenka/2c989ff64448fd66b04a to your computer and use it in GitHub Desktop.

Select an option

Save julenka/2c989ff64448fd66b04a to your computer and use it in GitHub Desktop.
go home #android
private void goHome() {
Intent home = new Intent(Intent.ACTION_MAIN);
home.addCategory(Intent.CATEGORY_HOME);
home.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(home);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment