移动ListView

时间:2012-11-28 15:30:53

标签: android listview

在我的Android应用程序中,我有一个装载了大量项目的ListView。我希望用户可以在列表中快速移动。我已经看到在某些应用程序中,当加载列表并且用户开始滚动时,屏幕右侧会出现一个图标,此图标可用于在列表中快速移动。

我该怎么做?

非常感谢!

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)

请参阅Vardhan为Android here实现Fast Scroll。

  

如果您希望能够自定义快速滚动条,请选择   你自己的滚动图像出现,我建议使用这个来源:

     

https://github.com/nolanlawson/CustomFastScrollViewDemo/

     

基本上,你的listview适配器必须实现一个   sectionindexer。如果不这样,这部分索引器可以被剥离   想要复杂化并提供简单的快速滚动   列表的整个长度。

     

fastscroller的直接来源是:

     

https://github.com/nolanlawson/CustomFastScrollViewDemo/blob/master/src/com/nolanlawson/customfastscrollviewdemo/CustomFastScrollView.java

     

将此视图放在列表视图周围(将列表视图嵌入其中   查看你的xml布局文件)并设置android:fastScrollEnabled =“true”   在你的列表视图上。

     

您可能还想查看以前的答案:   Fast Scroll display problem with ListAdapter and SectionIndexer

来源:How to use fast scroll in android?