Android快速開發(fā)11個(gè)必備的工具類
作者:網(wǎng)絡(luò)整理
Android快速開發(fā)不可或缺的11個(gè)輔助類,其中10個(gè)來(lái)自張鴻洋的博客,1個(gè)是我平時(shí)積攢的,復(fù)制粘貼到你的項(xiàng)目里,添加上包名就可以直接使用,能提高開發(fā)速度。
源碼簡(jiǎn)介
Android快速開發(fā)不可或缺的11個(gè)輔助類,其中10個(gè)來(lái)自張鴻洋的博客,1個(gè)是我平時(shí)積攢的,復(fù)制粘貼到你的項(xiàng)目里,添加上包名就可以直接使用,能提高開發(fā)速度。
源碼運(yùn)行截圖
源碼片段
- // 縮放/裁剪圖片
- public static Bitmap zoomImg(Bitmap bm, int newWidth ,int newHeight)
- {
- // 獲得圖片的寬高
- int width = bm.getWidth();
- int height = bm.getHeight();
- // 計(jì)算縮放比例
- 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é)任編輯:林師授
來(lái)源:
網(wǎng)絡(luò)整理