Skip to content

Instantly share code, notes, and snippets.

@miva2
Created September 8, 2015 13:35
Show Gist options
  • Save miva2/7a33b4300e6765cd35df to your computer and use it in GitHub Desktop.
Save miva2/7a33b4300e6765cd35df to your computer and use it in GitHub Desktop.
onBackPressed in FragmentActivity
/**
* Take care of popping the fragment back stack or finishing the activity
* as appropriate.
*/
public void onBackPressed() {
if (!mFragments.popBackStackImmediate()) {
supportFinishAfterTransition();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment