Google Photos vs Stock Gallery – Intent Picker

Solution First, update the photoPickerIntent to use ACTION_GET_CONTENT, and remove the extras related to cropping, since cropping will be handled by another Intent later: Intent photoPickerIntent = new Intent(Intent.ACTION_GET_CONTENT); photoPickerIntent.setType(“image/*”); // Do not include the extras related to cropping here; // this Intent is for selecting the image only. startActivityForResult(photoPickerIntent, RESULT_LOAD_IMAGE); Then, onActivityResult() will have … Read more