android中是否有可能在方向更改时动态调整画布宽度和高度

时间:2012-10-31 11:02:44

标签: android

我在画布上使用了一个背景图片,并尝试在设备方向改变时相应地重新调整大小,任何人都可以建议我在Android中可以在方向更改时重新调整画布尺寸。

1 个答案:

答案 0 :(得分:0)

我认为无法调整画布大小。如果您在画布上使用覆盖整个屏幕的背景图像,那么当方向按以下方式更改时,您可以做的是缩放此图像:

@Override
        public void onSurfaceChanged(SurfaceHolder holder, int format,
                int width, int height) {


            // orientation change
            if (_width == width && _height == height) {
                _orient = 0;//portrait
                this.width = width;
                this.height = height;
                            this._holder=holder;
                this.bgBitmap =Bitmap.createScaledBitmap(BitmapFactory
                .decodeResource(res, R.drawable.bg), (_holder
                        .getSurfaceFrame().width()), _holder.getSurfaceFrame()
                        .height(), false);

            } else {
                _orient = 1;//landscape
                this.width = width;
                this.height = height;
                his.bgBitmap =Bitmap.createScaledBitmap(BitmapFactory
                .decodeResource(res, R.drawable.bg), (_holder
                        .getSurfaceFrame().width()), _holder.getSurfaceFrame()
                        .height(), false);

            }

            super.onSurfaceChanged(holder, format, width, height);
        }

此方法是我的代码中扩展Engine的类的一部分。我的代码非常冗长,因此我只在此处发布相关部分。