Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 457 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 457 Bytes

GlideContentProviderLoader

a utils class that help load image from content provider using glide

Android Arsenal

how to use

      Glide.with(this)
           .using(new GlideContentProviderLoader(this))
           .load(Uri.parse(imageUri))
           .into(expandedImageView);