前端之家收集整理的这篇文章主要介绍了
android – 检查图像是否在缓存 – 通用图像加载程序,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我猜这个
标题说了一切.我试过了:
imageLoader.getMemoryCache().get(key);
图像uri作为关键,但它总是返回null
虽然我在配置中启用了缓存.
使用MemoryCacheUtils.
MemoryCacheUtils.findCachedBitmapsForImageUri(imageUri,ImageLoader.getInstance().getMemoryCache());
内存缓存可以包含一个图像的几个位图(diffenrent大小).所以内存缓存使用特殊的键,而不是图像urls.
原文链接:https://www.f2er.com/android/312426.html