Ejemplo n.º 1
0
 /** Controls behavior of the back button */
 @Override
 public void onBackPressed() {
   // Only close apps when there's no backstack
   if (getSupportFragmentManager().getBackStackEntryCount() <= 1) {
     finish();
   } else {
     super.onBackPressed();
   }
 }