Android

[Android] Memory Management. out of Memory.

tenn 2012. 7. 3. 18:46


Recycle Bitmap


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


protected void onDestroy(){

bitmap.recycle();

bitmap = null;

}



Recycle ImageView's Bitmap


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