写真編集アプリがあります。画像をインポートすると正常に動作しますが、編集のために画像を開くとクラッシュします。
これは logcat の出力です。
08-04 20:56:16.973: E/dalvikvm-heap(336): 810000-byte external allocation too large for this process.
08-04 20:56:17.073: I/dalvikvm-heap(336): Clamp target GC heap from 25.289MB to 24.000MB
08-04 20:56:17.073: E/GraphicsJNI(336): VM won't let us allocate 810000 bytes
アップデート::
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == RESULT_LOAD_IMAGE && resultCode == RESULT_OK
&& null != data) {
Uri selectedImage = data.getData();
String[] filePathColumn = { MediaStore.Images.Media.DATA };
Cursor cursor = getContentResolver().query(selectedImage,
filePathColumn, null, null, null);
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
String picturePath = cursor.getString(columnIndex);
cursor.close();
ImageView imageView = (ImageView) findViewById(R.id.ivPhoto);
chosenBitmap = superDecodeFile(new File(picturePath));
imageView.setBackgroundColor(0);
Bitmap bMap = Bitmap.createScaledBitmap(chosenBitmap, 500, 500, true);
imageView.setImageBitmap(bMap);
}
}
これは私の onResult コードです..したがって、choosenBitmap が imageView ( ivPhoto ) に表示されます。.recycle(); を使用する必要があります。だから私はすでにimageViewをリサイクルすることでいくらかのメモリを解放します..どこで.recycle();を使いますか?? .setBackgroundColor(0); を変更しようとしました。.recycle(); に しかし、それは機能しません