Skip to content
An image loading and caching library for Android focused on smooth scrolling
Java Shell
Branch: master
Clone or download
sjudd and glide-copybara-robot Remove Request#recycle()
It's now unused.

PiperOrigin-RevId: 263792894
Latest commit 01addba Aug 16, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github Whitelist build stability for stale. Dec 3, 2017
.idea Include default inspection profile for AS/Intellij. Dec 30, 2017
annotation Rollforward "Allow AppGlideModules to optionally accept a Context in … Jun 25, 2019
glide Disable BuildConfig generation Jun 17, 2019
gradle/wrapper Update Gradle to 4.10.1 Mar 5, 2019
instrumentation Use single lock for all error/thumbnail requests in a single request … Aug 5, 2019
integration Update to mockito 2.23.4 Jul 18, 2019
library Remove Request#recycle() Aug 16, 2019
samples More aggressively reformat code, including imports, when migrating code Jun 6, 2019
scripts Disable BuildConfig generation Jun 17, 2019
static Add logo. Sep 5, 2014
testutil Reformat all files excluding third_party. May 24, 2019
third_party Moving away from @config(manifest = ...) Jun 13, 2019
.gitignore Include default inspection profile for AS/Intellij. Dec 30, 2017
.gitmodules Move exif-orientation-examples out of submodule to ease code migrations. May 24, 2019
.travis.yml Disable travis tests except for unit tests + samples. May 29, 2019
CONTRIBUTING.md Automated g4 rollback of changelist 116167265. May 17, 2016
ISSUE_TEMPLATE.md Introduce issue templates "the right way". Mar 18, 2016
LICENSE Initial not compiling gif encoder Oct 3, 2014
PULL_REQUEST_TEMPLATE.md Introduce issue templates "the right way". Mar 18, 2016
README.md Update README.md to 4.9.0 Feb 14, 2019
build.gradle Disable BuildConfig generation Jun 17, 2019
checkstyle.xml Migrate org.mockito.Matchers#any* to org.mockito.ArgumentMatchers Jul 9, 2019
checkstyle_suppressions.xml Fix build errors for CachedHashCodeArrayMap. Feb 12, 2018
debug.keystore Add a debug.keystore and copy it to its expected location in travis. Oct 31, 2017
gcloud-bumptech.json.enc Add scripts to queue firebase emulators in travis instrumentation test. Oct 22, 2017
gcloud-sjudd.json.enc Add scripts to queue firebase emulators in travis instrumentation test. Oct 22, 2017
gradle.properties Update to mockito 2.23.4 Jul 18, 2019
gradlew update gradle to 4.1 (#2286) Aug 24, 2017
gradlew.bat Project import generated by Copybara. May 24, 2019
settings.gradle gradle 4.5.1 Feb 12, 2018

README.md

Glide

Maven Central Build Status | View Glide's documentation | 简体中文文档 | Report an issue with 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 supports fetching, decoding, and displaying video stills, images, and animated GIFs. Glide includes a flexible API that allows developers to plug in to almost any network stack. By default Glide uses a custom HttpUrlConnection based stack, but also includes utility libraries plug in to Google's Volley project or Square's OkHttp library instead.

Glide's primary focus is on making scrolling any kind of a list of images as smooth and fast as possible, but Glide is also effective for almost any case where you need to fetch, resize, and display a remote image.

Download

For detailed instructions and requirements, see Glide's download and setup docs page.

You can download a jar from GitHub's releases page.

Or use Gradle:

repositories {
  mavenCentral()
  google()
}

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

Or Maven:

<dependency>
  <groupId>com.github.bumptech.glide</groupId>
  <artifactId>glide</artifactId>
  <version>4.9.0</version>
</dependency>
<dependency>
  <groupId>com.github.bumptech.glide</groupId>
  <artifactId>compiler</artifactId>
  <version>4.9.0</version>
  <optional>true</optional>
</dependency>

For info on using the bleeding edge, see the Snapshots docs page.

ProGuard

Depending on your ProGuard (DexGuard) config and usage, you may need to include the following lines in your proguard.cfg (see the Download and Setup docs page for more details):

-keep public class * implements com.bumptech.glide.module.GlideModule
-keep public class * extends com.bumptech.glide.module.AppGlideModule
-keep public enum com.bumptech.glide.load.ImageHeaderParser$** {
  **[] $VALUES;
  public *;
}

# for DexGuard only
-keepresourcexmlelements manifest/application/meta-data@value=GlideModule

How do I use Glide?

Check out the documentation for pages on a variety of topics, and see the javadocs.

For Glide v3, see the wiki.

Simple use cases will look something like this:

// For a simple view:
@Override public void onCreate(Bundle savedInstanceState) {
  ...
  ImageView imageView = (ImageView) findViewById(R.id.my_image_view);

  Glide.with(this).load("http://goo.gl/gEgYUd").into(imageView);
}

// For a simple image list:
@Override public View getView(int position, View recycled, ViewGroup container) {
  final ImageView myImageView;
  if (recycled == null) {
    myImageView = (ImageView) inflater.inflate(R.layout.my_image_view, container, false);
  } else {
    myImageView = (ImageView) recycled;
  }

  String url = myUrls.get(position);

  Glide
    .with(myFragment)
    .load(url)
    .centerCrop()
    .placeholder(R.drawable.loading_spinner)
    .into(myImageView);

  return myImageView;
}

Status

Version 4 is now released and stable. Updates are released periodically with new features and bug fixes.

Comments/bugs/questions/pull requests are always welcome! Please read CONTRIBUTING.md on how to report issues.

Compatibility

  • Minimum Android SDK: Glide v4 requires a minimum API level of 14.
  • Compile Android SDK: Glide v4 requires you to compile against API 26 or later.

If you need to support older versions of Android, consider staying on Glide v3, which works on API 10, but is not actively maintained.

  • OkHttp 3.x: There is an optional dependency available called okhttp3-integration, see the docs page.
  • Volley: There is an optional dependency available called volley-integration, see the docs page.
  • Round Pictures: CircleImageView/CircularImageView/RoundedImageView are known to have issues with TransitionDrawable (.crossFade() with .thumbnail() or .placeholder()) and animated GIFs, use a BitmapTransformation (.circleCrop() will be available in v4) or .dontAnimate() to fix the issue.
  • Huge Images (maps, comic strips): Glide can load huge images by downsampling them, but does not support zooming and panning ImageViews as they require special resource optimizations (such as tiling) to work without OutOfMemoryErrors.

Build

Building Glide with gradle is fairly straight forward:

git clone https://github.com/bumptech/glide.git
cd glide
./gradlew jar

Note: Make sure your Android SDK has the Android Support Repository installed, and that your $ANDROID_HOME environment variable is pointing at the SDK or add a local.properties file in the root project with a sdk.dir=... line.

Samples

Follow the steps in the Build section to set up the project and then:

./gradlew :samples:flickr:run
./gradlew :samples:giphy:run
./gradlew :samples:svg:run
./gradlew :samples:contacturi:run

You may also find precompiled APKs on the releases page.

Development

Follow the steps in the Build section to setup the project and then edit the files however you wish. Android Studio cleanly imports both Glide's source and tests and is the recommended way to work with Glide.

To open the project in Android Studio:

  1. Go to File menu or the Welcome Screen
  2. Click on Open...
  3. Navigate to Glide's root directory.
  4. Select setting.gradle

For more details, see the Contributing docs page.

Getting Help

To report a specific problem or feature request, open a new issue on Github. For questions, suggestions, or anything else, email Glide's discussion group, or join our IRC channel: irc.freenode.net#glide-library.

Contributing

Before submitting pull requests, contributors must sign Google's individual contributor license agreement.

Thanks

Author

Sam Judd - @sjudd on GitHub, @samajudd on Twitter

License

BSD, part MIT and Apache 2.0. See the LICENSE file for details.

Disclaimer

This is not an official Google product.

You can’t perform that action at this time.