Reputation: 3578
I want to create a ListView similar to the iOS-component UITableView in Android. I managed to create the sectioned ListView but how do I create an alphabet list on the right?
Upvotes: 1
Views: 2772
Reputation: 3578
Refer This library.... Perfect One
https://github.com/woozzu/IndexableListView
Upvotes: 0
Reputation: 3225
You could use fast scroll. It is not the same, but similar. Call setFastScrollEnabled(true)
on your list view and have your list adapter implement SectionIndexer
.
Upvotes: 0
Reputation: 15701
you can create it using the one more List in relative layout .........
Please find the code at
http://hello-android.blogspot.in/2010/11/sideindex-for-android.html
Upvotes: 1