MultipleImagePick
MultipleImagePick copied to clipboard
Can set android.graphic.Bitmap to display image on GridView?
I would to thank you for this open source project. I know this project allowed us to select image(s) from gallery and showing on GridView with awesome theme, But sometimes it need to showing image from server. So can i set android.graphic.Bitmap to display image on GridView?
Maybe it looks like this (For single image)
Bitmap ImageFile;
viewSwitcher.setDisplayedChild(1);
imageLoader.displayImage(ImageFile, imgSinglePick);
For Multiple image
ArrayList<BitMap> dataT = new ArrayList<BitMap>();
// ...
viewSwitcher.setDisplayedChild(0);
adapter.addAll(dataT);
Ps. Maybe this is not an issue, maybe it would be better to be a feature request.
Thank you.