mzelzoghbi / ZGallery

Android 3rd party library to make implementing galleries more easier
164 stars 64 forks source link

How to add support for loading local images with URIs from glide #31

Open iamdeadman opened 6 years ago

iamdeadman commented 6 years ago

Hi,

I was looking to load an arraylist of uris with glide but found that in the source file HorizontalListAdapters

Glide.with(this.activity).load((String)this.images.get(position)).into(holder.image);

The items seem to be stringified here, which is why my Uris are not loading.

How can we add support for this