How can i show the alphabet in a listview?

1.3k Views Asked by At

How can i show the alphabet like below:

This is what i want

I'm using alphabet indexer and that is works. But the alphabet missing from the right side.

2

There are 2 best solutions below

0
On BEST ANSWER

Android doesn't natively support showing the alphabet on the side of a ListView. To do this, you'll need a library. You'd probably want something like this or that.

2
On

Use an Adapter that implements SectionIndexer.

And have your ListView have setFastScrollEnabled(true).

Plenty of tutorials about that around the web, even Google samples I think.

Here is a tutorial I liked about SectionIndexer.