Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 606 Bytes

File metadata and controls

21 lines (13 loc) · 606 Bytes

GlideSampleApplication

Sample application with implementation of Glide V4

GlideApp.with(this)
                .load(path)
                .centerCrop()
                .transition(DrawableTransitionOptions.withCrossFade()) //Optional
                .skipMemoryCache(true)  //No memory cache
                .diskCacheStrategy(DiskCacheStrategy.NONE)   //No disk cache               
                .into(imageView);


RESULT

device-2017-09-28-202343