Is it possible to return object as a activity result from child activity to parent? Just something like:
Intent resultIntent = new Intent(null);
resultIntent.putExtra("STRING_GOES_HERE", myObject);
setResult(resultIntent);
finish();
If it is possible, how should I retrieve myObject
in parent activity?
No comments:
Post a Comment