import android.support.v4.util.LruCache;


public class ImageCache {

private ImageCache() {
// use 1/8 of available heap size
cache = new LruCache((int) (Runtime.getRuntime().maxMemory() / 8)) {
              @Override
              protected int sizeOf(String key, Bitmap value) {
                  return value.getRowBytes() * value.getHeight();
              }
          };
}


private static ImageCache imageCache = null;


public static synchronized ImageCache getInstance() {
if (imageCache == null) {
imageCache = new ImageCache();
}
return imageCache;


}
private LruCache cache = null;

/**
* put bitmap to image cache
* @param key
* @param value
* @return  the puts bitmap
*/
public Bitmap put(String key, Bitmap value){
return cache.put(key, value);
}

/**
* return the bitmap
* @param key
* @return
*/
public Bitmap get(String key){
return cache.get(key);
}
}

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. 2020了,安卓程序员该何去何从?
  2. 【Android学习笔记】再探Android Service
  3. Android SDK安装
  4. 解析Android平板电脑困局:应用匮乏 定价过
  5. android不弹出软件盘,注意要使用editText.
  6. Android(安卓)WebView 开发详解(三)
  7. cocos安卓打包出现的:未指定Android目标平
  8. 利用HTML5开发Android笔记(上篇)
  9. apk反编译
  10. [Java][Android][Process] 暴力的服务可