How can I pick multiple images from the built-in picker Intent?
Posted
by dguardi
on Stack Overflow
See other posts from Stack Overflow
or by dguardi
Published on 2010-03-21T06:15:07Z
Indexed on
2010/03/21
6:21 UTC
Read the original article
Hit count: 193
android
Is it possible to reuse the picker Intent to select multiple pictures instead of one? I haven't found a way and I'm trying to reproduce it with a grid view but my alignment is very poor and my performance is not quite as good as the picker.
Intent photoPickerIntent = new Intent(Intent.ACTION_PICK);
photoPickerIntent.setType("image/*");
startActivityForResult(photoPickerIntent, REQ_PICKER);
© Stack Overflow or respective owner