public static void clearBigImageCache() { bmpCache.evictAll(); }
public Bitmap getBigImageCache(String key) { return bmpCache.get(key); }
public void removeBigImageCache(String key) { bmpCache.evict(key); }
public void addBigImageCache(String key, Bitmap bmp) { bmpCache.put(key, bmp); }
public void hintBigImageRetains(Set<String> keys) { bmpCache.hintRetains(keys); }
public void hintBigImageEvictors(Set<String> keys) { bmpCache.hintEvictors(keys); }