Eclipse's memory analyzer for Android has a handy dandy little graph that shows you the number of allocations by size class; for example, I am looking at something that has 510 24-byte arrays, and 60 4-kilobyte arrays and so on.
However I would like to see a graph where the count is multiplied by the array size, so I can work out how much MEMORY is being used in each class. For example, a single 3.9MB array would barely show up on this graph but 3.9MB > (24×510 = 12240 bytes).
Is there a way to do this, short of reprogramming Eclipse?