@See this https://stackoverflow.com/a/15029515/185022
I`m trying to select images from gallery, but i only found the way to select a single image.
Intent photoPickerIntent = new Intent(Intent.ACTION_PICK);
photoPickerIntent.setType("image/*");
startActivityForResult(photoPickerIntent, 1);
Is there a way to select multiple images?
Create a custom gallery same like: Android custom image gallery with checkbox in grid to select multiple
I think, you should implement custom gallery for multiple image pick action.
see here in details.
Why don't you try ACTION_SEND_MULTIPLE thing. You will receive a set of Uris.
Something like
Saw this code block on a google-groups post. Just try this out. Thanks.
First of all you need to use putExtra with your photoPickerIntent
Then in your on activity result you should get ClipData from Intent like this
And iterate this clipData to get URI for specific picked image.
I hope this helps