In short, I've got an app that I'm working on that needs to be able to take images and upload them. Before uploading them I want to show them on screen. Ideally, I should be able to load images from the phone's storage using the gallery, OR take a picture and upload it directly.
I can take a picture and show it in an ImageView without issue. I can load images from the gallery, but only those images that were downloaded from some external source seem to show up in the ImageView. For example, if I took a picture with the camera last week and wanted to choose it with the gallery, it won't load; the ImageView is just blank with no errors. This is the case for every single image I've taken with the camera; if I try to load it using the gallery it doesn't work, but if I load other images using the gallery they work. I can't figure out why this would be the case, so I'll present some relevant code here and hope someone can help me out.
Intent pickPhoto = new Intent(Intent.ACTION_PICK,
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(pickPhoto , 1);
And the code within onActivityResult where it's loading the image and attempting to display it:
Uri selectedImage = data.getData();
String[] filePathColumn = { MediaStore.Images.Media.DATA };
Cursor cursor = getContentResolver().query(selectedImage,
filePathColumn, null, null, null);
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
String picturePath = cursor.getString(columnIndex);
cursor.close();
Bitmap imageBitmap = (Bitmap) BitmapFactory.decodeFile(picturePath);
imageview.setImageBitmap(imageBitmap);
Hope this can help you.