ImageLruMemoryCache
class ImageLruMemoryCache(val maxSize: Int = (Runtime.getRuntime().maxMemory() / 1024).toInt() / 8)
Content copied to clipboard
Implementation of in-memory cache based on LruCache.
See also
Parameters
maxSize
maximum sum of the sizes of the entries in this cache.
Constructors
Link copied to clipboard
fun ImageLruMemoryCache(maxSize: Int = (Runtime.getRuntime().maxMemory() / 1024).toInt() / 8)
Content copied to clipboard