glide
glide copied to clipboard
An image loading and caching library for Android focused on smooth scrolling
Under HttpUrlFetcher PLease replace java.net.HttpURLConnection with java.net.HttpsURLConnection
Your dependency added in gradle is okay. But, In build.gradle.kts it is not working. The code for build.gradle.kts Should be like this: ` repositories { google() mavenCentral() } dependencies {...
https://developer.android.com/guide/practices/page-sizes?hl=zh-cn
**Glide Version**:4.16.0 **Integration libraries**: **Device/Android Version**: **Issue details / Repro steps / Use case background**: I noticed some ANR issues in Firebase that relate to this problem. **Stack trace /...
Loading images through Glide, this way of loading, linking https://i-blog.csdnimg.cn/direct/efed520f694b4f31aa30e236c7bfa0ed.jpeg Cannot load normally. Specific code: // Glide.with(this) // .load(url) // .into(imageView); or // Glide.with(this) // .asBitmap() // .load(url) // .apply(requestOptions)...
**Glide Version**: 4.16.0 **Integration libraries**: OkHttp, WebP decoder **Device/Android Version**: Across multiple Device / OS versions. **Issue details / Repro steps / Use case background**: This issue is randomly happening...
currentThreadTimeMillis() returns how long the current thread has been executing, not the current time. ## Description ## Motivation and Context
Hi! In https://github.com/bumptech/glide/issues/4807 and https://github.com/bumptech/glide/issues/5140, the platform AVIF decoder may not support transparency, so use of the integration library is recommended. Is there a smart way for me to setup...
## Description related issue : #5404 I changed three methods which have wrong expression - getFallbackDrawable() - getErrorDrawable() - getPlaceholderDrawable() Resource IDs can be negative, but the functions were treating...
IPV6 URLs are of the form http://[2607:f8b0:4006:823::200e]/ but the code was removing the square brackets from the URL, resulting in an invalid URL and a MalformedURLException. ## Description Cater for...