Skip to content

Instantly share code, notes, and snippets.

@creativepsyco
Created November 24, 2014 09:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save creativepsyco/55e9cee6d84831ef3f89 to your computer and use it in GitHub Desktop.
Save creativepsyco/55e9cee6d84831ef3f89 to your computer and use it in GitHub Desktop.
How to launch a restart intent.
Intent intent = new Intent(getActivity(), HomeActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
finishActivity();
getActivity().startActivity(intent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment