I have an issue with importing a picture from the Album in Android, because the onActivityResult() method is never called.
onActivityResult()
This is the code that I wrote
To have onActivityResult() called in the fragment, you should call the fragment's version of startActivityForResult(), not the activity's. So in your fragment's code, replace
startActivityForResult()
getActivity().startActivityForResult(galleryIntent, PICK_IMAGE);
with
startActivityForResult(galleryIntent, PICK_IMAGE);