Select Multiple Images Using Galleryview
I was just wondering if Android had built in code so that I could select multiple images in a gallery-view and then have those images exported as filenames in a string array(ex /sd
Solution 1:
The gallery widget doesn't support multiple selection by default. I believe the one one which does is ListView, using the choiceMode attribute (set to 2 for multiple selection).
You could try extending ListView into your own custom view which formats the images as you need.
The other option is to extend the gallery view and add in your own code to allow multiple selection. You would need to override quite a few methods to allow for multiple selection. Take a look at the android source code to see how they did it.
Solution 2:
I would like to point you to the following library. It seems to do what you want. There's also the ability to create your own gallery like explained in this tutorial
Post a Comment for "Select Multiple Images Using Galleryview"