Please note, this question is not a duplicate of the following:
- https://stackoverflow.com/questions/19006776/onactivityresult-not-working-with-fragments
- onActivityResult not working on fragments
Also, another similar question was asked before, but that doesn't mention orientation changes (and is unresolved).
My onActivityResult
method in the Fragment
does get called if I don't switch orientation. However, if I follow these steps, it doesn't get called:
- Load fragment in FragmentActivity.
- From the fragment:
startActivityForResult(new Intent(MediaStore.ACTION_IMAGE_CAPTURE), Constants.REQ_CODE_IMAGE_CAPTURE);
- Wait for the camera to load.
- Switch orientation.
- Take picture and click the checkmark.
onActivityResult
still gets called in the parent FragmentActivity. However, due to this warning I am getting:
W/FragmentActivity(4418): Activity result no fragment exists for index: 0x22d73
...my guess is that the parent gets destroyed due to the orientation change, and after having been re-created, can't find the Fragment
that called startActivityForResult
in the first place.
Is this a framework bug? How can this be worked around?
EDIT: Added more code due to popular demand.
FragmentActivity.java:
...
fragment = new ExampleFragment();
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
transaction.replace (R.id.mainContentView, fragment);
if (clearBackStack) {
// clear the back stack
while (getSupportFragmentManager().popBackStackImmediate ());
// add the current transaction to the back stack
transaction.addToBackStack (null);
}
else {
transaction.addToBackStack(null);
}
transaction.commit();
...
@Override
public void onActivityResult(int reqCode, int resultCode, Intent data) {
super.onActivityResult(reqCode, resultCode, data);
}
ExampleFragment.java:
Intent takePicture = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(takePicture, Constants.REQ_CODE_IMAGE_CAPTURE);
...
@Override
public void onActivityResult(int requestCode, int resultCode, Intent imageReturnedIntent) {
super.onActivityResult(requestCode, resultCode, imageReturnedIntent);
switch (requestCode) {
case Constants.REQ_CODE_IMAGE_CAPTURE:
// handle added image
}
}