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.

Gradle:

repositories {
  mavenCentral()
  google()
}

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

Maven:


  com.github.bumptech.glide
  glide
  4.9.0


  com.github.bumptech.glide
  compiler
  4.9.0
  true

https://github.com/bumptech/glide

你可能感兴趣的:(Glide)