I am unable to select multiple media from the Android gallery even after using the Intent.EXTRA_ALLOW_MULTIPLE. I can select multiple media from the photos app.
Is there a way that I can do from the gallery app as well?
I am unable to select multiple media from the Android gallery even after using the Intent.EXTRA_ALLOW_MULTIPLE. I can select multiple media from the photos app.
Is there a way that I can do from the gallery app as well?
On
You can't do it using Intent. It is available only from API 18. So What i suggest you use any library for custom gallery.
https://github.com/luminousman/MultipleImagePick
https://github.com/giljulio/android-multiple-image-picker
I guess
Intent.EXTRA_ALLOW_MULTIPLEis from API 18. So you have to do code of manual selection for lower version too. It's better to do it manually for all. For this you can refer here .One of the good libraries for this.