标签: android bitmap out-of-memory android-canvas
在onSizeChanged()中为画布创建位图时,我正在 OutOfMemoryError
onSizeChanged()
OutOfMemoryError
我正在创建像这样的Bitmap
Bitmap
Bitmap b = Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565);
缩放画布时我收到OutOfMemoryError异常。
我如何处理此异常?