I'm currently struggling with a problem I'd like you to help me solving... basically I'm trying to get some images from the internal gallery of the phone in this way
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select Picture"),SELECT_IMAGE);
but when I get the Uri in the onActivityResult method using this
Uri images_uri = data.getData();
the data is empty (this thing doesn't happen when the image is fetched from the SD card)
How could I solve it?
Moreover, as secondary problem how could I get more than 1 image? I read about using ACTION_SEND_MULTIPLE but this opens a choice for sending methods instead of places from where to fetch images...
thank you in advance