我在android中缓存图像时遇到了一些麻烦。我正在使用 AsyncTask 从 URL 下载图像。在下载之前,我检查缓存中是否已经包含一个以 URL 为键的 Drawable。如果是,Drawable 将从缓存中取出。
下载由 ListFragment 的自定义 ArrayAdapter 或另一个 Fragment 中的 onCreateView() 触发。
我的问题如下:第一次下载正常。但是,如果我滚动 ListFragment,则会加载错误的图像。如果我重新加载列表或片段,图像将从缓存中获取,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]);
感谢您的帮助。