I\'ve seen in a lot of samples, that developers call recycle() on bitmap, and then set it to null. Why is this necessary, doesn\'t the garbage coll
recycle()
null
bitmap.recycle(); release the native heap that is used in bitmaps.And setting it to null is to assist the GC to quickly collect your reference.