文件名称:
Android瀑布流加载图片效果damo
开发工具:
文件大小: 4mb
下载次数: 0
上传时间: 2013-12-11
详细说明: android瀑布流样式加载图片 内含防止bitmap溢出代码 package com.dodowaterfall; import java.io.BufferedInputStream; import java.io.IOException; import java.lang.ref.ReferenceQueue; import java.lang.ref.SoftReference; import java.util.Hashtable; import android.content.Context; import android.content.res.AssetManager; import android.graphics.Bitmap; import android.graphics.BitmapFactory; /** * 防止溢出 * */ public class BitmapCache { static private BitmapCache cache; /** 用于Chche内容的存储 */ private Hashtable bitmapRefs; /** 垃圾Reference的队列(所引用的对象已经被回收,则将该引用存入队列中) */ private ReferenceQueue q; /** * 继承SoftReference,使得每一个实例都具有可识别的标识。 */ private class BtimapRef extends SoftReference { private String _key = ""; public BtimapRef(Bitmap bmp, ReferenceQueue q, String key) { super(bmp, q); _key = key; } } private BitmapCache() { bitmapRefs = new Hashtable(); q = new ReferenceQueue(); } /** * 取得缓存器实例 */ public static BitmapCache getInstance() { if (cache == null) { cache = new BitmapCache(); } return cache; } /** * 以软引用的方式对一个Bitmap对象的实例进行引用并保存该引用 */ private void addCacheBitmap(Bitmap bmp, String key) { cleanCache();// 清除垃圾引用 BtimapRef ref = new BtimapRef(bmp, q, key); bitmapRefs.put(key, ref); } /** * 依据所指定的文件名获取图片 */ public Bitmap getBitmap(String filename, AssetManager assetManager) { Bitmap bitmapImage = null; // 缓存中是否有该Bitmap实例的软引用,如果有,从软引用中取得。 if (bitmapRefs.containsKey(filename)) { BtimapRef ref = (BtimapRef) bitmapRefs.get(filename); bitmapImage = (Bitmap) ref.get(); } // 如果没有软引用,或者从软引用中得到的实例是null,重新构建一个实例, // 并保存对这个新建实例的软引用 if (bitmapImage == null) { BitmapFactory.Options options = new BitmapFactory.Options(); options.inTempStorage = new byte[16 * 1024]; // bitmapImage = BitmapFactory.decodeFile(filename, options); BufferedInputStream buf; try { buf = new BufferedInputStream(assetManager.open(filename)); bitmapImage = BitmapFactory.decodeStream(buf); this.addCacheBitmap(bitmapImage, filename); } catch (IOException e) { e.printStackTrace(); } } return bitmapImage; } private void cleanCache() { BtimapRef ref = null; while ((ref = (BtimapRef) q.poll()) != null) { bitmapRefs.remove(ref._key); } } // 清除Cache内的全部内容 public void clearCache() { cleanCache(); bitmapRefs.clear(); System.gc(); System.runFinalization(); } } ...展开收缩
(系统自动生成,下载前可以参看下载内容)
下载文件列表
相关说明
- 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
- 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度。
- 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
- 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
- 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
- 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.