我有按月和年分开的事件列表(2010年6月,2010年7月等)
我想启用快速滚动,因为列表确实很长。
如何在Android中启用ListViews
的快速滚动?
最佳答案
在ListActivity的onCreate方法中,使用setFastScrollEnabled:
getListView().setFastScrollEnabled(true);
我有按月和年分开的事件列表(2010年6月,2010年7月等)
我想启用快速滚动,因为列表确实很长。
如何在Android中启用ListViews
的快速滚动?
最佳答案
在ListActivity的onCreate方法中,使用setFastScrollEnabled:
getListView().setFastScrollEnabled(true);