Drawable advantage over bitmap for memory in android

Posted by Tabish on Stack Overflow See other posts from Stack Overflow or by Tabish
Published on 2010-12-31T15:39:56Z Indexed on 2011/01/01 9:54 UTC
Read the original article Hit count: 330

This question is linked with the answers in the following question:

Error removing Bitmaps[Android]

Is there any advantage of using Drawable over Bitmap in Android in terms of memory de-allocation ?

I was looking at Romain Guy project Shelves and he uses SoftReference for images caches but I'm unable to search where is the code which is de-allocating these Drawables when SoftReference automatically reclaims the memory for Bitmap. As far as I know .recycle() has to be explicitly called on the Bitmap for it to be de-allocated.

© Stack Overflow or respective owner

Related posts about android

Related posts about bitmap