안드로이드 사용시 자주 발생되는 out of memory 에 한가지 해결 방법
SoftReference
메모리가 부족할경우, 담겨져 있는 데이터의 메모리를 비워 사용에 필요한 메모리를 확보한다.
HashMap<String, SoftReference<Bitmap>> bitmapMap = new HashMap<String, SoftReference<Bitmap>>();
bitmapMap.put(key, new SoftReference<Bitmap>(value));
'개발 > Android' 카테고리의 다른 글
안드로이드 푸시 (android push) MismatchSenderId 오류 (0) | 2015.06.16 |
---|---|
안드로이드 푸시 (android push) Unauthorized Error 401 오류 (0) | 2015.06.16 |
안드로이드 ImageView height 여백 제거 (0) | 2015.06.12 |
Android Studio 에 androidannotations 사용하기 (2) (0) | 2015.05.04 |
Android Studio 에 androidannotations 적용하기 (1) (1) | 2015.05.04 |