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.

How does one use glide to download an image into a bitmap?

Downloading a URL into an ImageView is very easy using Glide: Glide .with(context) .load(getIntent().getData()) .placeholder(R.drawable.…

android android-glide
How to round an image with Glide library?

So, anybody know how to display an image with rounded corners with Glide? I am loading an image with Glide, …

android android-glide
Picasso v/s Imageloader v/s Fresco vs Glide

Findings: Difference between Picasso v/s ImageLoader here ... Info about the library GLIDE here ... Now recently Facebook released new image …

android universal-image-loader picasso fresco android-glide
Show GIF file with Glide (image loading and caching library)

I try to show a GIF image as loading placeholder in image view - with Glide Library: Glide.with(context) .…

android imageview gif android-glide
Progress bar while loading image using Glide

Can I load a spinner in placeholder with rotating animation until the image is loaded using Glide? I am trying …

android android-glide
Remove image from cache in Glide library

I am using Glide in one of my projects to show image from file. Below is my code how I …

android caching android-glide
Set visibility of progress bar gone on completion of image loading using Glide library

Hi I want to have a progress bar for image which will shown while image loading but when image loading …

android imageview android-glide
Local image caching solution for Android: Square Picasso, Universal Image Loader, Glide, Fresco?

I am looking for an asynchronous image loading and caching library in Android. I was going to use Picasso, but …

android picasso android-glide universal-image-loader fresco
How to fit Image into ImageView using Glide

My concern is how to fit image using android:scaleType="fitXY" into image using Glide. My ImageView is <ImageView …

android image android-layout crop android-glide
Is there a way to load image as bitmap to Glide

Im looking for a way to use bitmap as input to Glide. I am even not sure if its possible. …

android image-resizing android-glide image-scaling