Home
last modified time | relevance | path

Searched refs:mMemoryCache (Results 1 – 1 of 1) sorted by relevance

/developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DImageCache.java78 private LruCache<String, BitmapDrawable> mMemoryCache; field in ImageCache
152 mMemoryCache = new LruCache<String, BitmapDrawable>(mCacheParams.memCacheSize) { in init()
242 if (mMemoryCache != null) { in addBitmapToCache()
248 mMemoryCache.put(data, value); in addBitmapToCache()
296 if (mMemoryCache != null) { in getBitmapFromMemCache()
297 memValue = mMemoryCache.get(data); in getBitmapFromMemCache()
400 if (mMemoryCache != null) { in clearCache()
401 mMemoryCache.evictAll(); in clearCache()