Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android - Image picker doesn't work on Kindle Fire?

I have the following code to display an imagepicker. After user picks an image onActivityResult gets called, to return me the data for the selected image.

On kindle however, I get a resultCode of 0, and data as null. Anyone else has noticed this problem before? This problem happens only on kindle fire.

startActivityForResult(new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI), SELECT_PICTURE);
like image 336
aryaxt Avatar asked Mar 30 '12 22:03

aryaxt


1 Answers

I'm running into this exact same issue. Prior to the recent Kindle Fire update, which happened a few days ago for me, picking images from the gallery worked fine for me. So the most recent Kindle Fire update must have introduced this bug.

like image 147
Gino Avatar answered Nov 07 '22 00:11

Gino