MultipleImageSelect
MultipleImageSelect copied to clipboard
File URi or File descriptor instead of image
Is there any way to return an array Uri or file descriptors of images instead of the images itself ?
One possible way is when you get the selected images from the library, you can iterate through and obtain the URI for each image individually as:
ArrayList<Image> images = data.getParcelableArrayListExtra(Constants.INTENT_EXTRA_IMAGES);
for (int i = 0, l = images.size(); i < l; i++) {
fileUris.add(new File(images.get(i).path).toURI());
}