I have an application in which there is an ImageView .
I can take one picture from the gallery using:
Intent photoPickerIntent = new Intent(Intent.ACTION_PICK); photoPickerIntent.setType("image/*"); startActivityForResult(photoPickerIntent, GALLERY_REQUEST); and transfer it to my application in ImageView .
Is it possible to make it so that I can select several pictures simultaneously from the gallery and transfer them to my ImageView application?
If so, how to do it?
If not, please suggest alternatives, if any.
Thank.