我知道,Stackoverflow中有很多类似的问题。但我无法解决我的问题。
我有某种拼图游戏。 Drawable-nodpi文件夹中的图片为2500x1250。
我正在尝试使用以下建议的代码调整图像大小:
public static Bitmap decodeSampledBitmapFromResource(Resources res, int resId,
int reqWidth, int reqHeight) {
// First decode with inJustDecodeBounds=true to check dimensions
final BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeResource(res, resId, options);
// Calculate inSampleSize
options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
// Decode bitmap with inSampleSize set
options.inJustDecodeBounds = false;
return BitmapFactory.decodeResource(res, resId, options);
}
public static int calculateInSampleSize(
BitmapFactory.Options options, int reqWidth, int reqHeight) {
// Raw height and width of image
final int height = options.outHeight;
final int width = options.outWidth;
int inSampleSize = 1;
if (height > reqHeight || width > reqWidth) {
final int halfHeight = height / 2;
final int halfWidth = width / 2;
while ((halfHeight / inSampleSize) >= reqHeight
&& (halfWidth / inSampleSize) >= reqWidth) {
inSampleSize *= 2;
}
}
return inSampleSize;
}
我称之为: (我多次称这些代码。)
private Bitmap resizeImg (int rsm) {
Bitmap bmp = decodeSampledBitmapFromResource(getResources(),rsm,wdth,hght);
return bmp;
}
我需要使用Matrix
作为Imageview的缩放。但它不是我想要的尺寸。它在没有Matrix
的情况下正常工作。
我正在解决Matrix
这样的问题:
Bitmap.createScaledBitmap
private Bitmap resizeImg (int rsm) {
Bitmap bmp = decodeSampledBitmapFromResource(getResources(),rsm,wdth,hght);
// return bmp;
Bitmap resized = Bitmap.createScaledBitmap(bmp, wdth,hght,true); //I get OutOfMemoryError this line.
return resized;
}
此插入确实解决了我的问题。但是每天我都会遇到很多OutOfMemoryError错误。
我需要做些什么才能解决此错误?请帮我。谢谢。
答案 0 :(得分:0)
1]将android manifest中的largeHeap为true添加到应用程序标记中:
android:largeHeap="true"
2]回收所有使用过的位图,
Example:
bmp.recycle();
resized.recycle();