1

我正在编写一个简单的 android 应用程序,它使用ImageView来显示图像。单击按钮时,它将根据当前图像生成一个新的位图,并替换旧的位图。

我使用的图像不大:220 x 213

但是在模拟器中,当我第五次点击按钮时,会抛出一个错误:

 java.lang.OutOfMemoryError: bitmap size exceeds VM budget

我读过一些文章:

  1. java.lang.OutOfMemoryError:位图大小超出 VM 预算 - Android
  2. http://androidactivity.wordpress.com/2011/09/24/solution-for-outofmemoryerror-bitmap-size-exceeds-vm-budget/
  3. http://android-developers.blogspot.de/2009/01/avoiding-memory-leaks.html

但仍然无法解决我的问题。

我的代码是:

public class MyActivity extends Activity {
    private Bitmap image;
    private ImageView imageView;
    private Button button;

    /**
     * Called when the activity is first created.
     */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        this.button = (Button) findViewById(R.id.button);
        this.imageView = (ImageView) findViewById(R.id.image);


        this.image = BitmapFactory.decodeResource(getResources(), R.drawable.m0);
        this.imageView.setImageBitmap(image);

        this.button.setOnClickListener(new View.OnClickListener() {
            private int current = 0;

            @Override
            public void onClick(View view) {
                Bitmap toRemove = image;
                Matrix matrix = new Matrix();
                matrix.setRotate(30, 0.5f, 0.5f);
                image = Bitmap.createBitmap(image, 0, 0, image.getWidth(), image.getHeight(), matrix, true);
                imageView.setImageBitmap(image);

                if (toRemove != null) {
                    toRemove.recycle();
                }
            }
        });
    }
}

你可以看到我toRemove.recycle()在删除图像上调用了。不过好像没什么效果。


更新:

由于该错误仅在我第 5 次(不是第一次)单击按钮时发生,我们可以看到图像大小没有问题。在我的代码中,我尝试在生成新图像后释放旧图像,所以我认为旧图像没有正确释放。

我已经调用toRemove.recycle()了,这是发布图像的正确方法吗?还是我应该用别的东西?


最后:

埃米尔是对的。我添加了一些代码来记录大小,您可以看到它每次都在增加:

08-28 13:49:21.162: INFO/image size before(2238): 330 x 320
08-28 13:49:21.232: INFO/image size after(2238): 446 x 442
08-28 13:49:31.732: INFO/image size before(2238): 446 x 442
08-28 13:49:31.832: INFO/image size after(2238): 607 x 606
08-28 13:49:34.622: INFO/image size before(2238): 607 x 606
08-28 13:49:34.772: INFO/image size after(2238): 829 x 828
08-28 13:49:37.153: INFO/image size before(2238): 829 x 828
08-28 13:49:37.393: INFO/image size after(2238): 1132 x 1132
4

1 回答 1

2

我不太确定 Bitmap.createBitmap() 是如何工作的,但考虑到错误与“位图大小”有关

java.lang.OutOfMemoryError: bitmap size exceeds VM budget

我会假设图像的大小随着每次点击而增加。因此在第 5 次点击时发生错误。

我建议尺寸增加与旋转矩阵有关。旋转图像时,它似乎没有将旋转后的图像裁剪为图像的宽度和高度,而是增加了图像的大小。

您将不得不尝试一些替代方法来在您想要的 w/h 范围内操纵旋转。

这个问题的答案(两下)显示了如果您愿意,如何裁剪旋转的图像。 Android:如何在中心点旋转位图

RectF rectF = new RectF(0, 0, source.getWidth(), source.getHeight());
matrix.mapRect(rectF);
于 2012-08-28T14:04:13.917 回答