这是我的代码,用于显示已经下载的base64字符串到imageview(存在于ListView中):
RequestOptions requestOptions = new RequestOptions();
requestOptions.override((int) Converter.pxFromDp(this.context, (float) ICON_SIZE),(int) Converter.pxFromDp(this.context, (float) ICON_SIZE));
requestOptions.dontAnimate();
requestOptions.fitCenter();
requestOptions.diskCacheStrategy(DiskCacheStrategy.ALL);
if (!eventItem.getVulnerabilityIcon().isEmpty() ) {
Glide.with(context)
.asBitmap()
.load(Base64.decode(base64String, Base64.DEFAULT))
.apply(requestOptions)
.into(new BitmapImageViewTarget(holder.iconVul) { })
;
} else {
Glide.with(context).clear(holder.iconVul); // tell Glide that it should forget this view
holder.iconVul.setImageResource(R.drawable.defaultIcon); // manually set "unknown" icon
}
当我滚动列表视图时,一切都很好(上下)。现在当我点击一个项目时,我有一个突出显示(View view,int position)方法,它只是改变了视图的背景,因此调用了getView(...)。然后它重绘所有视图(正常行为)。问题是它从头开始重新绘制图像,好像根本没有在图像上应用缓存功能。效果是,每次点击/点击列表中的项目时,图像都会闪烁,我不会这样做。我想要那种效果。
起初我认为这是一个动画问题,我发现,为了禁用任何动画,我应该添加dontAnimate()。然后,我浏览了滑行(com.github.bumptech.glide:glide:4.0.0-RC0)文档,并阅读:
/**
* From: RequestBuilder Class in com.github.bumptech.glide:glide:4.0.0-RC0
* Returns a request to load the given byte array.
*
* <p> Note - by default loads for bytes are not cached in either the memory or the disk cache.
* </p>
*
* @param model the data to load.
* @see #load(Object)
*/
public RequestBuilder<TranscodeType> load(@Nullable byte[] model) {
return loadGeneric(model).apply(signatureOf(new ObjectKey(UUID.randomUUID().toString()))
.diskCacheStrategy(DiskCacheStrategy.NONE).skipMemoryCache(true /*skipMemoryCache*/));
}
现在我的问题是,有没有办法在第一次加载后强制Glide缓存字节数组图像?
P.S:英语不是我的第一语言,所以请为我糟糕的语法道歉。答案 0 :(得分:1)
更改Glide调用的.into()部分有效:
RequestOptions requestOptions = new RequestOptions();
requestOptions.override(iconWidth,iconHeight);
requestOptions.dontAnimate();
requestOptions.fitCenter();
requestOptions.diskCacheStrategy(DiskCacheStrategy.ALL);
if (!eventItem.getVulnerabilityIcon().isEmpty() ) {
Glide.with(context)
.asBitmap()
.load(Base64.decode(base64String, Base64.DEFAULT))
.apply(requestOptions)
.into(new SimpleTarget<Bitmap>(iconWidth, iconHeight) {
@Override
public void onResourceReady(Bitmap resource, Transition<? super Bitmap> transition) {
finalHolder.iconVul.setImageBitmap(resource);
}
});
} else {
Glide.with(context).clear(holder.iconVul); // tell Glide that it should forget this view
holder.iconVul.setImageResource(R.drawable.defaultIcon); // manually set "unknown" icon
}
现在它不再眨眼了。可以向我解释一下有什么区别吗? 1-是因为我使用SimpleTarget,Glide最终缓存结果吗? 2-是否因为转换变量未进一步处理?
请有人照亮我的灯笼。