Durante la prueba noté que a veces el final() de mi subactividad no se ejecuta en ActivityResult. La mayoría de las veces funciona bien, y no puedo entender cuándo y por qué ocurre este problema.onActivityResult a veces no se llama cuando Sub-Activity termina
subactividad Comienzo:
public void launchSubActivity(Class<? extends Activity> subActivityClass, Bundle data,
OnSubActivityResult callback) {
Intent i = new Intent(this, subActivityClass);
if(data!=null) i.putExtras(data);
Random rand = new Random();
int correlationId = rand.nextInt();
_callbackMap.put(correlationId, callback);
startActivityForResult(i, correlationId);
}
Subactividad:
public void select() {
Bundle b = new Bundle();
b.putInt("YEAR", year_result);
b.putInt("MONTH", month_result);
b.putInt("DAY", day_result);
this.getIntent().putExtras(b);
this.setResult(RESULT_OK, this.getIntent());
this.finish();
}
onActivityResult (por Nazmul Idris):
/**
* this is the underlying implementation of the onActivityResult method that
* handles auto generation of correlationIds and adding/removing callback
* functors to handle the result
*/
@Override
protected void onActivityResult(int correlationId, int resultCode,
Intent data) {
Log.d(Prototype.TAG, "SimpleActivity Result "+resultCode);
try {
OnSubActivityResult callback = _callbackMap.get(correlationId);
switch (resultCode) {
case Activity.RESULT_CANCELED:
callback.onResultCancel(data);
_callbackMap.remove(correlationId);
break;
case Activity.RESULT_OK:
callback.onResultOkay(data);
_callbackMap.remove(correlationId);
break;
default:
Log.e(Prototype.TAG,
"Couldn't find callback handler for correlationId");
}
} catch (Exception e) {
Log
.e(Prototype.TAG,
"Problem processing result from sub-activity", e);
}
}
Podría publicar su onActivityResult aplicación()? –
¿Cuándo llamas 'select()'? – CommonsWare
select() se invoca al hacer clic con el botón en la subactividad. Comprobé con el depurador y estoy seguro de que select() siempre se ejecuta, mientras que el primer Log in on ActivityResult no siempre se muestra. – Daniel