http://developer.android.com/design/building-blocks/scrolling.html
I\'m looking for solution to perform the second part (\"Index Scrolling\"), but I can\'t find any exam
Here is the Sample code posted in GitHub. Check out this,
https://github.com/rno/Android-ScrollBarPanel
To implement index scrolling, you have to call setFastScrollEnabled(true)
on your ListView. In addition, your adapter has to implement the SectionIndexer interface.
You can find an example here: http://spinettaro.blogspot.de/2011/11/android-snippet-code-android-listview.html
This should work with all Views that are a subclass of AbsListView
.