Nani
Nani

Reputation: 97

Strange content in the heap dump

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.enter image description here

Upvotes: 1

Views: 38

Answers (1)

Nabin Bhandari
Nabin Bhandari

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

Related Questions