If I store bitmaps in a hashmap using SoftReference, will SoftReference call .recycle() on the Bitmap ? And if it doesn't then what would be a way to clear the bitmap properly from memory under the given situation (when bitmaps are inside a HashMap) ?
|
|
No. What if instead of a
You don't have to care about clearing the Bitmap (invoking the |
|||||||
|
|
From Bitmap.recycle doc:
So, to weakly hold the Bitmap is enough. If for some reason you need to agressively free this resource, you're out of luck with a weak reference. EDIT I'm not familiar with the Bitmap implementation in android, but what might happen that forces one to deal with Bitmap resources explicitly is the fact that some memory is not created on the heap. So the process may run out of memory while there's no need for GC. Imagine a small object holding a large memory chunk malloced from somewhere else. The finalize of the object may be prepared to free the memory, but there is no reason for the VM to GC, so the native memory is "lost". But in this case a weak reference will not help either, as it is handled only after a gc. Only thing that helps here is to explicit "recycle" maybe with the help of reference counting. |
|||||||||||
|
|
Bitmap's associated resources will be freed upon GC, thanks to it's |
|||
|
|
|
If the object referenced by the WeakReference will be GC'd, I'd assume this whill trigger the recycle method on the bitmap. However I'm not sure, so just to be on the safe side you could do something like overriding the WeakReference class, making a Bitmap-specific WeakReference class that calls the recycle method when it's refrence is GC'd. The solution should ook something like this, but it's untested:
|
|||||
|