Hi,
anyone knows how to display the first letter of an alphabetical list of contacts while browsing the list (using vertical scrollbar in a ListView).?
ie. show A B C etc ..
thanks
You should use a scrollview and place everything yourself (labels, buttons, ...). When going through your sorted list of contacts you can easily know when the first letter is different from the last one. At that point (simple if structure) you can add an extra label with the letter. At least, this is how I would do it .