Top "Android-glide" questions

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

Glide load local image by Uri.

I'm trying to use Glide to load an image from local storage with no success. Glide.with(mContext) .load(pictureUri) // …

android android-glide
Resize images with Glide in a ImageView Android

I have a lot of doubts about the treatment of the images in android, and I was hoping to see …

android imageview resize android-glide
Glide-4.0.0 Missing placeholder, error, GlideApp and does not resolve its method placeholder,error

I want to use the Glide Android library to download an image and show in ImageView. In the previous version …

android android-layout android-glide
Glide not loading real image and stuck with placeholder

I have a pretty basic load image from server line code: Glide.with(view.getContext()).load(url).placeholder(R.drawable.…

android android-glide
Glide image loading with application context

I am using glide for image loading in my android app, to avoid any crashes I am loading images with …

android performance android-glide
Recyclerview Adapter and Glide - same image every 4-5 rows

I have this problem - just for testing purposes I added ParseFile to one of ParseObject from received list. Instead …

android parse-platform android-recyclerview android-glide
Glide does not resolve its method

Today I'm trying to use Glide image loader in my android application while using this I had facing method not …

android android-glide
Using Glide for Android, how do I load images from asset and resources?

I want to keep all the transformation, stoke and animations identical and was thinking if we can pass resource ID …

android lazy-loading android-glide
Glide listener doesn't work

I'm using Glide to load images and I added a listener to know when resource is ready or if there …

android callback imageview android-glide
Glide : How to find if the image is already cached and use the cached version?

Scenario: I have a large GIF image which I want to cache the first time user opens the app using …

android image-caching android-glide