http://developer.android.com/design/building-blocks/scrolling.html
我正在寻找执行第二部分(“索引滚动”)的解决方案,但我找不到任何例子来做到这一点。默认API中有解决方案吗?
http://developer.android.com/design/building-blocks/scrolling.html
我正在寻找执行第二部分(“索引滚动”)的解决方案,但我找不到任何例子来做到这一点。默认API中有解决方案吗?
要实现索引滚动,您必须调用setFastScrollEnabled(true)
您的 ListView。此外,您的适配器必须实现该SectionIndexer
接口。
你可以在这里找到一个例子:http: //spinettaro.blogspot.de/2011/11/android-snippet-code-android-listview.html
这应该适用于作为AbsListView
.
这是发布在 GitHub 中的示例代码。看看这个,