Recycle Bitmap


액티비티가 destroy될 때 해제. 안하고 놔두면 뻗는다.


protected void onDestroy(){

bitmap.recycle();

bitmap = null;

}



Recycle ImageView's Bitmap


((BitmapDrawable)picView.getDrawable()).getBitmap().recycle();



Posted by tenn
,