Skip to content

Instantly share code, notes, and snippets.

@sazid
Created November 14, 2015 19:21
Show Gist options
  • Save sazid/eb30a923c35b43a4b2e4 to your computer and use it in GitHub Desktop.
Save sazid/eb30a923c35b43a4b2e4 to your computer and use it in GitHub Desktop.
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
if ((intent.getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
!= Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT) {
getFragmentManager().popBackStack(null,
FragmentManager.POP_BACK_STACK_INCLUSIVE);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment