ChyBy
ChyBy

Reputation: 1685

Android how to monitor the app consumtion of memory

In my application I show a very long array of a complex object. The array is saved in the sqlite database (each row of the table is an attribute) I'd like charge the array dinamically because it contains data for the user and depending on user interaction the app will need between 10 and 250 entries. How can I monitor the memory I'm talking with different vector size for estimating the best buffer size? thanks

Upvotes: 1

Views: 438

Answers (1)

mibollma
mibollma

Reputation: 15108

DDMS contains an allocation tracker for Android.

Upvotes: 2

Related Questions