I guess the title says it all. I tried:
imageLoader.getMemoryCache().get(key);
with the image uri as key, but it always return null
null
For disk cache use below code
public static boolean isDiskCache(String url) { File file = DiskCacheUtils.findInCache(url, ImageLoader.getInstance().getDiskCache()); return file != null; }