Reputation: 97
I have gone through memory analysis process and I tried to read through and understand how to use the heap dumb in the monitor but I found some strange result. for example i found Bitmap but I have not used bitmap at this time. Can any one give me an overview of what is going on in my app memory.
Upvotes: 1
Views: 38
Reputation: 16409
Although you are using Drawable
in ImageView
, Drawables still use Bitmap
internally. So you are seeing memory used up by the Bitmap
object(s).
Upvotes: 1