MultipleImagePick icon indicating copy to clipboard operation
MultipleImagePick copied to clipboard

Can set android.graphic.Bitmap to display image on GridView?

Open yohanes-ai opened this issue 10 years ago • 0 comments

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.

yohanes-ai avatar Aug 05 '14 03:08 yohanes-ai