如何调整图像中的Android?
问题描述:
我创建一个应用程序,并希望建立一个画廊视图。我不想在画廊视图中的图像是全尺寸的。在Android中如何调整图片?
I am creating an application and want to setup a gallery view. I do not want the images in the gallery view to be full size. How do I resize images in Android?
答
尝试:
Bitmap yourBitmap;
Bitmap resized = Bitmap.createScaledBitmap(yourBitmap, newWidth, newHeight, true);
或
resized = Bitmap.createScaledBitmap(yourBitmap,(int)(yourBitmap.getWidth()*0.8), (int)(yourBitmap.getHeight()*0.8), true);