Android アクティビティで画像をズームして回転させたい。私は次のようにやっています
Matrix matrix = new Matrix();
matrix.postRotate(rotation);
matrix.postScale(zoomScale,zoomScale);
Bitmap scaledBitmap = Bitmap.createBitmap(bitmap,0,0,bitmap.getWidth(),bitmap.getHeight(),matrix,true);
imageView.setImageBitmap(scaledBitmap);
しかし、いくつかの回転とズームの後、メモリエラーが発生します。どうすればこれを解決できますか? ほとんどのアプリケーションは、日常的にかなり効率的にそれを行います。