Check if Image is in Cache - Universal Image Loader

前端 未结 5 1915
醉梦人生
醉梦人生 2021-02-07 18:29

I guess the title says it all. I tried:

imageLoader.getMemoryCache().get(key); 

with the image uri as key, but it always return null

5条回答
  •  攒了一身酷
    2021-02-07 18:59

    It should be MemoryCacheUtils, so you should use

    MemoryCacheUtils.findCachedBitmapsForImageUri(imageUri, ImageLoader.getInstance().getMemoryCache());
    

提交回复
热议问题