The activity hosting this fragment has its onActivityResult called when the camera activity returns.
onActivityResult
My fragment starts an activity for a result with th
In short,
In fragment, declare Fragment fragment = this;
Fragment fragment = this
after that use fragment.startActivityForResult.
fragment.startActivityForResult
The result will return in activityResult.