Android快速开发不可或缺的11个工具类

来源:互联网 发布:js浏览器定位 编辑:程序博客网 时间:2024/05/21 09:39
部分代码:

// 缩放/裁剪图片public static Bitmap zoomImg(Bitmap bm, int newWidth ,int newHeight){     // 获得图片的宽高   int width = bm.getWidth();   int height = bm.getHeight();   // 计算缩放比例   float scaleWidth = ((float) newWidth) / width;   float scaleHeight = ((float) newHeight) / height;   // 取得想要缩放的matrix参数   Matrix matrix = new Matrix();   matrix.postScale(scaleWidth, scaleHeight);   // 得到新的图片   Bitmap newbm = Bitmap.createBitmap(bm, 0, 0, width, height, matrix, true);   return newbm;}



截图:


工具类下载:http://download.csdn.net/detail/onceing/8927205
2 0