-
How To Select Multiple images in android
about 9 years ago
-
almost 8 years ago
http://stackoverflow.com/questions/23426113/how-to-select-multiple-images-from-gallery-in-android
just go through this link...modify the layout and code the way you want to...the first answer with 22 likes help you a lot...
-
-
about 9 years ago
There is EXTRA_ALLOW_MULTIPLE option is set on the intent through the Intent.putExtra() method:
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
In your code write as below:Intent intent = new Intent(); intent.setType("image/*"); intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true); intent.setAction(Intent.ACTION_GET_CONTENT); startActivityForResult(Intent.createChooser(intent,"Select Picture"), RESULT_LOAD_IMAGE1);
-
2 Answer(s)