I want to Select Multiple Images in Android.
I write following code through which I can select only one image.
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
startActivityForResult(intent, IMAGE_PICK);
How I can achieve this ?
Thanks.
As I know standard Intent doesn’t support multiple selection.
You could try to extend ListView and make your own custom view to allow multiple selection.