Krishnakant Dalal
Krishnakant Dalal

Reputation: 3578

Android ListView Like iOS UITableView

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?

UITable view

Upvotes: 1

Views: 2772

Answers (3)

Krishnakant Dalal
Krishnakant Dalal

Reputation: 3578

Refer This library.... Perfect One

https://github.com/woozzu/IndexableListView

Upvotes: 0

Jason Hanley
Jason Hanley

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

Dheeresh Singh
Dheeresh Singh

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

Related Questions