Pick image from fragment always return resultcode 0 in some devices
问题 I trying to pick an image from gallery and set the bitmap to my imageview, but I have a problem: in my device, works well, but it doesn't work in other. I start the image picker in my fragment as follow: Intent photoPickerIntent = new Intent(Intent.ACTION_PICK); photoPickerIntent.setType("image/*"); startActivityForResult(photoPickerIntent, SELECT_PHOTO); And this is my onActivityResult : @Override public void onActivityResult(int requestCode, int resultCode, Intent imageReturnedIntent) {