首页 > 代码库 > LurChache的使用

LurChache的使用

参考:详细解读LruCache类

   Android Bitmap深入介绍(二)--- 优化技术

1.初始化缓存大小

        // 获取应用的最大可用内存
        int maxMemory = (int) Runtime.getRuntime().maxMemory();
        int cacheMemory = maxMemory / 8;

        lruCache = new LruCache<String, Bitmap>(cacheMemory) {
            protected int sizeOf(String key, Bitmap value) {
                // 返回每个bitmap所占据的内存,每一行占据的字节数×高度
                return value.getRowBytes() * value.getHeight();
            }
        };

 

LurChache的使用