9

http://developer.android.com/design/building-blocks/scrolling.html

我正在寻找执行第二部分(“索引滚动”)的解决方案,但我找不到任何例子来做到这一点。默认API中有解决方案吗?

4

2 回答 2

20

要实现索引滚动,您必须调用setFastScrollEnabled(true)您的 ListView。此外,您的适配器必须实现该SectionIndexer接口。

你可以在这里找到一个例子:http: //spinettaro.blogspot.de/2011/11/android-snippet-code-android-listview.html

这应该适用于作为AbsListView.

于 2012-12-09T16:26:10.627 回答
3

这是发布在 GitHub 中的示例代码。看看这个,

https://github.com/rno/Android-ScrollBarPanel

于 2012-07-30T08:31:58.693 回答