我想标题就是这么说的。我试过了:
imageLoader.getMemoryCache().get(key);
将图片uri作为键,但它始终返回null
虽然我在配置中启用了缓存。
答案 0 :(得分:32)
使用MemoryCacheUtils
。
MemoryCacheUtils.findCachedBitmapsForImageUri(imageUri, ImageLoader.getInstance().getMemoryCache());
内存缓存可以包含一个图像的多个位图(不同大小)。因此内存缓存使用特殊键,而不是图像URL。
答案 1 :(得分:2)
应该是MemoryCacheUtil s ,所以你应该使用
MemoryCacheUtils.findCachedBitmapsForImageUri(imageUri, ImageLoader.getInstance().getMemoryCache());
答案 2 :(得分:2)
对于代码
下的磁盘缓存使用public static boolean isDiskCache(String url) {
File file = DiskCacheUtils.findInCache(url, ImageLoader.getInstance().getDiskCache());
return file != null;
}
答案 3 :(得分:1)
有时,在使用Universal Image Loader库时,加载程序需要一段时间来验证远程映像是否已经加载到缓存中。要直接加载缓存文件,可以使用以下方法检查是否已创建远程文件的本地副本:
File file = imageLoader.getDiscCache().get(url);
if (!file.exists()) {
DisplayImageOptions options = new DisplayImageOptions.Builder()
.cacheOnDisc()
.build();
imageLoader.displayImage(url, imageView, options);
}
else {
imageView.setImageURI(Uri.parse(file.getAbsolutePath()));
}
答案 4 :(得分:1)
我认为您可以在实用程序类中创建一个简单的方法,如下所示:
public static boolean isImageAvailableInCache(String imageUrl){
MemoryCache memoryCache = ImageLoader.getInstance().getMemoryCache();
if(memoryCache!=null) {
for (String key : memoryCache.keys()) {
if (key.startsWith(imageUrl)) {
return true;
}
}
}
return false;
}
并使用它:
if(Utils.isImageAvailableInCache(imageUrl)){
//
}