Android快速開發(fā)11個必備的工具類
作者:網(wǎng)絡(luò)整理
Android快速開發(fā)不可或缺的11個輔助類,其中10個來自張鴻洋的博客,1個是我平時積攢的,復(fù)制粘貼到你的項目里,添加上包名就可以直接使用,能提高開發(fā)速度。
源碼簡介
Android快速開發(fā)不可或缺的11個輔助類,其中10個來自張鴻洋的博客,1個是我平時積攢的,復(fù)制粘貼到你的項目里,添加上包名就可以直接使用,能提高開發(fā)速度。
源碼運行截圖
源碼片段
- // 縮放/裁剪圖片
- 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參數(shù)
- Matrix matrix = new Matrix();
- matrix.postScale(scaleWidth, scaleHeight);
- // 得到新的圖片
- Bitmap newbm = Bitmap.createBitmap(bm, 0, 0, width, height, matrix, true);
- return newbm;
- }
責(zé)任編輯:林師授
來源:
網(wǎng)絡(luò)整理