How to pick multiple images from gallery?

Rohan Patel

In my application I allow to user to select multiple images to create pdf.

Issue is user is not able to select more than 1 images. I tried a lot but didn't get any perfect solution which can help me.

There are lot many lib available but i don't want to use it due to some reason.

I am looking for solution with native only.

Please help me.

jantursky

Simple by putting extra:

int RESULT_IMAGE_MULTIPLE = 1; 

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 pictures"), RESULT_IMAGE_MULTIPLE);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to show images from assets or internal storage in a gallery to pick from?

From Dev

How to pick multiple files from Android's gallery?

From Dev

How to select multiple images from gallery in titanium?

From Dev

How to select multiple images from gallery in android?

From Dev

How to pick multiple images from device?

From Dev

How to pick a file from gallery?

From Dev

How can i pick a image from gallery?

From Dev

How to load multiple images from JSON and display in gallery view in android?

From Dev

How to pickup multiple images from photo gallery in iOS 8 Swift

From Java

Select multiple images from android gallery

From Dev

Phonegap selecting multiple images from gallery/camera

From Dev

How to Load Multiple Images into android image gallery?

From Dev

How to Load Multiple Images into android image gallery?

From Dev

How to pick image from gallery and upload to server (parse.com) ?

From Dev

How to pick image for crop from camera or gallery in Android 7.0?

From Dev

Android pick an image from gallery

From Dev

how to get images to collectionViewCells from Gallery?

From Dev

Select multiple images from device's gallery in Hybrid application

From Dev

Select multiple images from device's gallery in Hybrid application

From Dev

Pick photo from gallery in android 5.0

From Dev

pick image from gallery and display in imagae view

From Dev

Pick Image From Gallery Or Google Photos Failing

From Dev

Pick an random image from photo gallery

From Dev

Bootstrap Image Gallery lightbox displaying all images from multiple galleries. Want only specific gallery images displayed

From Dev

How to save images from Camera to specific folder in iPhone gallery?

From Dev

How to have selectable images from image gallery in javafx?

From Dev

How I can resize images taken from the Gallery?

From Dev

How to retrieve an img src from a gallery of images using Jquery

From Dev

How to find duplicate images fetching from gallery in android

Related Related

  1. 1

    How to show images from assets or internal storage in a gallery to pick from?

  2. 2

    How to pick multiple files from Android's gallery?

  3. 3

    How to select multiple images from gallery in titanium?

  4. 4

    How to select multiple images from gallery in android?

  5. 5

    How to pick multiple images from device?

  6. 6

    How to pick a file from gallery?

  7. 7

    How can i pick a image from gallery?

  8. 8

    How to load multiple images from JSON and display in gallery view in android?

  9. 9

    How to pickup multiple images from photo gallery in iOS 8 Swift

  10. 10

    Select multiple images from android gallery

  11. 11

    Phonegap selecting multiple images from gallery/camera

  12. 12

    How to Load Multiple Images into android image gallery?

  13. 13

    How to Load Multiple Images into android image gallery?

  14. 14

    How to pick image from gallery and upload to server (parse.com) ?

  15. 15

    How to pick image for crop from camera or gallery in Android 7.0?

  16. 16

    Android pick an image from gallery

  17. 17

    how to get images to collectionViewCells from Gallery?

  18. 18

    Select multiple images from device's gallery in Hybrid application

  19. 19

    Select multiple images from device's gallery in Hybrid application

  20. 20

    Pick photo from gallery in android 5.0

  21. 21

    pick image from gallery and display in imagae view

  22. 22

    Pick Image From Gallery Or Google Photos Failing

  23. 23

    Pick an random image from photo gallery

  24. 24

    Bootstrap Image Gallery lightbox displaying all images from multiple galleries. Want only specific gallery images displayed

  25. 25

    How to save images from Camera to specific folder in iPhone gallery?

  26. 26

    How to have selectable images from image gallery in javafx?

  27. 27

    How I can resize images taken from the Gallery?

  28. 28

    How to retrieve an img src from a gallery of images using Jquery

  29. 29

    How to find duplicate images fetching from gallery in android

HotTag

Archive