LruCache:
*
LruCache
*
Getting a BitmapResouce from the cache
To get a resource from the cache simply pass the key of your resource (String in this example)
public Bitmap getResourceFromMemoryCache(String key) {
memoryCache.get(key);
}