I have a very simple Activity:
public class A extends ListActivity implements ListAdapter
{
@Override public void onCreate(Bundle b)
{
super.onCreate(b);
setListAdapter(this); //no problems without this line
}
// etc... (empty implementation ListAdapter interface functions)
}
When I start this Activity from other activity:
startActivity(new Intent(this, A.class));
and bush "back" button (to destroy this activity), the heap grows up about 13..15 kbytes and doesn't reduce back even after GC works out.
When I start and finish this activity again, the head grows up more and more.
To monitor the heap size I use DDMS in Eclipse.
What am I doing wrong?