How do you make those standard header labels in the ListView Control?
An example would be in the contacts application you see the first letter of the grouped contacts for each letter in the alphabet.
If possible please provide some code snippets on how to construct the grouped data and the display of the ListView.
You can use my
MergeAdapteror Jeff Sharkey’sSeparatedListAdapterfor that.In the case of
MergeAdapter, you would add an ordinaryView(e.g.,TextView) for a section header, then anAdapterfor the contents of that section. Lather, rinse, repeat.