我正在以这种方式使用Glide加载图像Fragment
Glide.with(this).load(pictureUrl)
.diskCacheStrategy(DiskCacheStrategy.ALL)
.placeholder(R.drawable.default)
.into(image);
但是图像从未设置到图像中,ImageView
尽管图像确实正在加载(我使用侦听器对此进行了调查)。我相信这只发生在没有从内存中加载图像时,因为如果Fragment
恢复它会加载。
如果我在asBitmap()
上面添加,则图像成功加载。此外,将 设置GlideDrawable
为ImageView
from an attachRequestListener
的onResourceReady()
方法也可以。