glide
glide copied to clipboard
An image loading and caching library for Android focused on smooth scrolling
Sorry for not adding this earlier, had trouble getting Gradle set up.
Here's a minimal self-contained test case: ```kotlin package com.bumptech.glide.integration.compose import androidx.compose.ui.Modifier import androidx.compose.ui.platform.testTag import androidx.compose.ui.test.assertIsDisplayed import androidx.compose.ui.test.junit4.createComposeRule import androidx.compose.ui.test.onNodeWithTag import androidx.compose.ui.test.onRoot import androidx.compose.ui.test.printToLog import org.junit.Rule import org.junit.Test import org.junit.runner.RunWith import...
Request: add callback for when Glide got the metadata of the source image (resolution, mimetype,...)
I use Glide this way: ``` Glide.with(applicationContext).asBitmap() .load(imageResId) .override(someWidth, someHeight) .diskCacheStrategy(DiskCacheStrategy.NONE) .addListener(object : RequestListener { override fun onLoadFailed(e: GlideException?, model: Any?, target: com.bumptech.glide.request.target.Target, isFirstResource: Boolean): Boolean { return false }...
Glide Version: com.github.bumptech.glide:glide:4.13.1 jp.wasabeef:glide-transformations:4.2.0 Device/Android Version: No specific version or device model Error stack: #00 pc 00000000000744b0 /apex/com.android.runtime/lib64/bionic/libc.so (abort+160) [arm64-v8a::20c7dfeb41468016772e288818fb55e7] 2 #01 pc 0000000000008a30 /system/lib64/liblog.so (__android_log_assert+328) [arm64-v8a::7b21d53e7a5f7cdfbf03c78503169f81] 3 #02 pc...
Recently, our application on Google Play has been rejected because of an improper registration of the broadcast receiver. Applications targeting Android 13 or later are required to explicitly specify the...
integration/ktx/src/test/java/com/bumptech/glide/load/engine/executor/GlideIdlingResourceInit.kt defines com.bumptech.glide.load.engine.executor.GlideIdlingResources integration/compose/src/androidTest/java/com/bumptech/glide/load/engine/executor/GlideIdlingResourceInit.kt defines com.bumptech.glide.load.engine.executor.GlideIdlingResourceInit This will likely end up being a problem for code maintainers.
I use Glide in Compose to show an image from the internet. The setup is pretty simple: ``` GlideImage( model = recipe.imageUrl, contentDescription = recipe.title, ) ``` the model is...
Hi, I'd like to ask is it possible when requesting smaller version of an image (say 200x100) to also cache together with it the original version (say 2000x1000) **in memory**...
I use these: ``` // https://github.com/bumptech/glide https://github.com/zjupure/GlideWebpDecoder // https://bumptech.github.io/glide/doc/download-setup.html#kotlin---ksp https://bumptech.github.io/glide/int/avif.html val glideVersion = "4.16.0" implementation("com.github.zjupure:webpdecoder:2.6.${glideVersion}") implementation("com.github.bumptech.glide:glide:${glideVersion}") ksp ("com.github.bumptech.glide:ksp:${glideVersion}") implementation("com.github.bumptech.glide:avif-integration:${glideVersion}") ``` I've noticed that for some reason, I can't support animation...
glide version com.github.bumptech.glide:compiler:4.16.0 load like this ``` Glide.with(this) .asBitmap() .load(R.drawable.belowImage) .apply( RequestOptions() .format(DecodeFormat.PREFER_ARGB_8888) .dontTransform() ) .into(vb.ivTest) ``` my image  virtual device display like this 