Glide listener doesn#39;t work(滑翔监听器不起作用)
问题描述
我正在使用 Glide 加载图像,并添加了一个侦听器以了解资源何时准备好或是否存在任何类型的错误:
I'm using Glide to load images and I added a listener to know when resource is ready or if there was an error of any type:
Glide.with(mContext)
.load(url)
.placeholder(R.drawable.glide_placeholder)
// use dontAnimate and not crossFade to avoid a bug with custom views
.dontAnimate()
.diskCacheStrategy(DiskCacheStrategy.ALL)
.listener(new RequestListener<String, GlideDrawable>() {
@Override
public boolean onException(Exception e, String model, Target<GlideDrawable> target, boolean isFirstResource) {
// do something
return true;
}
@Override
public boolean onResourceReady(GlideDrawable resource, String model, Target<GlideDrawable> target, boolean isFromMemoryCache, boolean isFirstResource) {
// do something
return true;
}
})
.into(mCustomImageView);
该应用程序永远不会在 onResourceReady
或 onException
内运行,但如果我删除监听器并让异步下载没有回调,它会正常运行:
The app never runs inside onResourceReady
or onException
but if I remove the listener and let the async download without a callback, it runs correctly:
Glide.with(mContext)
.load(url)
.placeholder(R.drawable.glide_placeholder)
// use dontAnimate and not crossFade to avoid a bug with custom views
.dontAnimate()
.diskCacheStrategy(DiskCacheStrategy.ALL)
.into(mCustomImageView);
我也尝试使用 GlideDrawableImageViewTarget
而不是侦听器来接收回调,但应用程序在 onLoadStarted
内部运行,但从未在 onLoadCleared
、onLoadFailed 内部运行
和 onResourceReady
.
I tried also with GlideDrawableImageViewTarget
instead of listener to receive callbacks but app runs inside onLoadStarted
but never runs inside onLoadCleared
, onLoadFailed
and onResourceReady
.
推荐答案
如果 ImageView 不可见或消失,这似乎是一个 bug.我在这里打开了一个问题:https://github.com/bumptech/glide/issues/618
It seems to be a bug with ImageView's visibility if it's invisible or gone. I opened an issue here: https://github.com/bumptech/glide/issues/618
这篇关于滑翔监听器不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:滑翔监听器不起作用
基础教程推荐
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01