我正在单击按钮旋转屏幕的背景图像。
Bitmap rotatedBitmap = null;
int curAngle = 0;
private Bitmap rotateImageBitmap(Bitmap org) {
if(rotatedBitmap != null )
{
rotatedBitmap.recycle();
}
Matrix matrix = new Matrix();
curAngle += 90;
matrix.postRotate(curAngle);
rotatedBitmap = Bitmap.createBitmap(org, 0, 0, org.getWidth(), org.getHeight(), matrix, true);
return rotatedBitmap;
}
应用程序在第 5 次单击按钮时强制关闭。(图像旋转 4 次)
Logcat:尝试使用回收的位图。请帮我。