我在android中缓存图像时遇到了一些麻烦。我正在使用AsyncTask从URL下载图像。在下载之前,我检查缓存中是否已包含以URL作为键的Drawable。如果是,Drawable将从缓存中获取。
下载由ListFragment的自定义ArrayAdapter或另一个片段中的onCreateView()触发。
我的问题如下:首次下载正常。但是如果我滚动ListFragment,则会加载错误的图像。如果我重新加载List或Fragment,图像将从缓存中获取,ImageViews将为空。如果我不使用缓存,图像将正确显示。
这是我的CacheHandler的代码:
import android.graphics.drawable.Drawable;
import android.util.LruCache;
public class CacheHandler {
private static CacheHandler instance;
private LruCache<String, Drawable> cache;
private final Logger logger = new Logger(CacheHandler.class);
private CacheHandler() {
final int maxMemory = (int) (Runtime.getRuntime().maxMemory() / 1024);
final int cacheSize = maxMemory / 8;
cache = new LruCache<String, Drawable>(cacheSize);
}
public static CacheHandler getInstance() {
if (instance == null)
instance = new CacheHandler();
return instance;
}
public void addToCache(String key, Drawable pic) {
if (getFromCache(key) == null) {
cache.put(key, pic);
logger.debug("Added drawable to cache with key " + key);
} else
logger.debug("Drawable with key " + key + " already exists");
}
public Drawable getFromCache(String key) {
logger.debug("Getting image for " + key);
Drawable d = cache.get(key);
logger.debug("Image is " + d);
return d;
}
}
这里是AsyncTask中的调用:
logger.debug("Checking cache");
Drawable d = CacheHandler.getInstance().getFromCache((String) params[0]);
感谢您的帮助。