안드로이드 사용시 자주 발생되는 out of memory 에 한가지 해결 방법



 SoftReference 



 메모리가 부족할경우, 담겨져 있는 데이터의 메모리를 비워 사용에 필요한 메모리를 확보한다.





HashMap<String, SoftReference<Bitmap>> bitmapMap = new HashMap<String,                                                         SoftReference<Bitmap>>();


bitmapMap.put(key, new SoftReference<Bitmap>(value));



+ Recent posts