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

In glide 4.12.0, it is detected that the SDK uses the permission code to read contacts. Can you remove the permission code? ![glide](https://user-images.githubusercontent.com/53509087/133870846-a392add3-5da7-469d-9f03-0b3fa69e01b0.png)

question

I'm trying to change the speed of a loaded GIF by Glide : ``` Glide.with(recordroo.this) .asGif().load(outputPath) .listener(new RequestListener() { @Override public boolean onLoadFailed(@Nullable GlideException e, Object model, Target target, boolean...

for some reason, i start a request in background thread,like this: ```java FutureTarget futureTarget = Glide.with(context) .asBitmap() .load(url) .submit(width, height); Bitmap bitmap = futureTarget.get(); ``` on ui thread, i also...

**Glide Version**:4.11.0 **Integration libraries**:okhttp-4.9.1 **Device/Android Version**:android10 **Issue details / Repro steps / Use case background**: crash sometimes **Glide load line / `GlideModule` (if any) / list Adapter code (if any)**:...

2022-06-02 17:43:06.420 15707-15707/com.example.photovideomakerwithmusic I/Glide: Root cause (1 of 3) java.io.FileNotFoundException: /external/images/media/2611: open failed: ENOENT (No such file or directory) at libcore.io.IoBridge.open(IoBridge.java:492) at java.io.FileInputStream.(FileInputStream.java:160) at java.io.FileInputStream.(FileInputStream.java:115) at android.content.ContentResolver.openInputStream(ContentResolver.java:1473) at com.bumptech.glide.load.data.StreamLocalUriFetcher.loadResourceFromUri(StreamLocalUriFetcher.java:74) at...

Glide Version: 4.11.0 Device/Android Version: HUAWEI (Android 8.1.0) Stack trace / LogCat: Thread Name: 'main' Back traces starts. java.lang.ClassCastException: java.lang.Class cannot be cast to java.lang.Object[] at androidx.collection.SimpleArrayMap.allocArrays(SimpleArrayMap.java:184) at androidx.collection.SimpleArrayMap.put(SimpleArrayMap.java:458) at...

java.lang.IllegalStateException: Cannot obtain size for recycled Bitmap: android.graphics.Bitmap@df09444[720x540] ARGB_8888 This is the code I wrote, which caused a crash, is there a way to reproduce this problem? ![83487B10-3B2A-4fae-8794-B69D27B78C3A](https://user-images.githubusercontent.com/49279041/170955551-87bc144d-402d-4b1e-8a4f-be9f6ce472e0.png)

resource_reuse

This pull request will fix the aspect ratio not being respected when using the crossFade transition. This is related to issue #363

enhancement
cla: yes

**Glide Version**: ``` kapt 'com.github.bumptech.glide:compiler:4.12.0' implementation 'com.github.bumptech.glide:glide:4.12.0' implementation 'com.github.bumptech.glide:annotations:4.12.0' implementation('com.github.bumptech.glide:okhttp3-integration:4.12.0') ``` **Integration libraries**: ``` // OkHttp implementation(platform("com.squareup.okhttp3:okhttp-bom:4.9.0")) implementation("com.squareup.okhttp3:okhttp") implementation("com.squareup.okhttp3:logging-interceptor") //Retrofit def retrofitVersion = "2.9.0" implementation "com.squareup.retrofit2:retrofit:$retrofitVersion" implementation "com.squareup.retrofit2:converter-moshi:$retrofitVersion" implementation "com.jakewharton.retrofit:retrofit2-kotlin-coroutines-adapter:$retrofitAdapterVersion"...

Here is a screen capture of two gifs playing w/ Glide 3.7: ![fastgif](https://user-images.githubusercontent.com/512439/31472012-f0ca007a-aea0-11e7-882e-2b4ef259a954.gif) Here is a screen capture of the same two gifs playing w/ Glide 4.2: ![slowgif](https://user-images.githubusercontent.com/512439/31471903-2d611a6a-aea0-11e7-9f92-5ab4d83dc3cb.gif) ````` GlideApp.with(context)...

enhancement
GIF