01 2012 档案

摘要:软引用相关知识传送门:http://blog.csdn.net/donglinlucky/article/details/2845777public class BitmapCache { static private BitmapCache cache; /** 用于Chche内容的存储 */ private Hashtable<Integer, MySoftRef> hashRefs; /** 垃圾Reference的队列(所引用的对象已经被回收,则将该引用存入队列中) */ private ReferenceQueue<Bitmap> q; /** ... 阅读全文
posted @ 2012-01-30 08:29 D.Winter 阅读(8579) 评论(8) 推荐(1)
摘要:大家可以先去了解下Android Matrix基础+详解。Touch.java/** * 图片浏览、缩放、拖动、自动居中 */public class Touch extends Activity implements OnTouchListener { Matrix matrix = new Matrix(); Matrix savedMatrix = new Matrix(); DisplayMetrics dm; ImageView imgView; Bitmap bitmap; float minScaleR;// 最小缩放比例 static ... 阅读全文
posted @ 2012-01-12 22:35 D.Winter 阅读(10976) 评论(2) 推荐(3)