Select multiple images from Photo Gallery on Android using Intents

spe picture spe · Jan 20, 2011 · Viewed 32.1k times · Source

@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?

Answer

Siklab.ph picture Siklab.ph · Dec 7, 2011