摘要: /** * @author gongchaobin * * Bitmap工具类 */public class BitmapUtil { /** * 以最省内存的方式读取本地资源的图片 或者SDCard中的图片 * * @param imagePath 图片在SDCard中的路径 * @return */ public static Bitmap getSDCardImg(String imagePath){ BitmapFactory.Options opt = new BitmapFactory.Options(); ... 阅读全文
posted @ 2012-11-30 17:56 暗殇 阅读(526) 评论(0) 推荐(0)