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