@Override
 protected void onPause() {
   super.onPause();
   if (googleApiClient != null) {
     googleApiClient.disconnect();
   }
 }
 public void accionAceptar() {
   super.accionAceptar();
   if (actualizacionCorrecta) {
     banderaModifico = 1;
     Intent intent = new Intent();
     intent.putExtra("banderaModifico", banderaModifico);
     setResult(Activity.RESULT_OK, intent);
     this.finish();
   }
 }
 @Override
 protected void onNewIntent(Intent intent) {
   super.onNewIntent(intent);
   setIntent(intent);
   handleIntent(intent);
 }