Skip to content

An image loading and caching library for Android focused on smooth scrolling

Notifications You must be signed in to change notification settings

apptech44/glide-library-app

Repository files navigation

Glide

Glide is a fast and efficient open source media management and image loading framework for Android that wraps media decoding, memory and disk caching, and resource pooling into a simple and easy to use interface.

Glide


repositories {
  mavenCentral()
  google()
}

dependencies {
  implementation 'com.github.bumptech.glide:glide:4.10.0'
  annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0'
}

Glide Image Load

Glide.with(context)
 .load(movies.getMovieImages())
 .centerCrop()
 .placeholder(R.drawable.ic_launcher_background)
 .into(holder.imageView);

Screen Shot

Work Done!

About

An image loading and caching library for Android focused on smooth scrolling

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages