我在我的app中使用了UniversalImageDownloader
。在UIL中,我们可以从缓存中保存图像。
File cachedImage = ImageLoader.getInstance().getDiscCache().get(imageUrl);
if (cachedImage.exists())
{// code for save 2 sd
}
毕加索有可能吗?
最佳答案
毕加索有一个私有(private)方法-
Bitmap quickMemoryCacheCheck(String key) {
Bitmap cached = cache.get(key);
if (cached != null) {
stats.dispatchCacheHit();
} else {
stats.dispatchCacheMiss();
}
return cached;
}
根据需要修改源。