问题描述
我正在使用 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 不可见或消失,则它似乎是 ImageView 可见性的错误.我在这里打开了一个问题: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
这篇关于Glide 监听器不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!