glide icon indicating copy to clipboard operation
glide copied to clipboard

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

Results 296 glide issues
Sort by recently updated
recently updated
newest added

**Glide Version**: 4.13.2 **Integration libraries**: None **Device/Android Version**: Emulator (Pixel 2 - API 30 - Android 11) and Huawei P30 lite **Issue details / Repro steps / Use case background**:...

bug

This is relatively early stage at this point. The API is likely to change in breaking ways. Ideally the migrations are not large, but I'd expect a few iterations. There's...

import-ready

…ner, as requested here: https://github.com/bumptech/glide/issues/4863 ## Description ## Motivation and Context

Glide has a documented feature [Custom Transforms](https://bumptech.github.io/glide/doc/transformations.html#custom-transformations). There is no sample code, but the [RoundedCorners](https://github.com/bumptech/glide/blob/d2bb3e8a6a2296b20ecaeb7759c16ef15aacbb28/library/src/main/java/com/bumptech/glide/load/resource/bitmap/RoundedCorners.java) class provides an adequate example for anyone wanting to make their own. However, **reproducing RoundedCorners...

Glide application goes back to the background, and the gif will be suspended in the floating window. If you call again to display other gifs, they will disappear directly. It...

**Glide Version**: 4.12.0-4.13.2 **Integration libraries**: com.github.bumptech.glide:compiler:4.13.2 com.github.bumptech.glide:okhttp3-integration:4.13.2 (No problems with version 4.11.0 of glide and Integration libraries.) **Device/Android Version**: Samsung Galaxy A50. **Issue details / Repro steps / Use case...

avif_integration: Add support for RGB565 Bitmaps Some low-RAM devices tend to use this format. Honor the existing Downsampler.PREFER_RGB_565 flag in the AVIF integration.

Hi there! Over at Signal a user reported [an issue](https://github.com/signalapp/Signal-Android/issues/11074) around being unable to render a specific image. Sure enough the problem seems to be completely reproducible with that image....

bug

I'm using this version of Glide: ``` implementation 'com.github.bumptech.glide:glide:4.13.2' ``` And this command to load some bitmap: ``` Glide.with(context).asBitmap().load(imgFile).addListener(listener).apply(RequestOptions.centerInsideTransform().skipMemoryCache(true).diskCacheStrategy(DiskCacheStrategy.NONE)).submit(screenWidth, screenHeight) ``` For the listener, I've noticed that there are no...

help wanted
good first issue

## Description findActivity(view) to findActivity(contentView) ## Motivation and Context The view.context might not be current Activity. for example: View viewA = LayoutInflater.from(activityA).inflate(resId, activityA.viewGroupA, false) activityB.viewGroupB.addView(viewA) viewA.context == activityA Although rarely...