I have a list of events which are seperated by month and year (Jun 2010, Jul 2010 etc.)
I want to enable fast scrolling because the list is really long.
How do I enable fast scroll on ListViews
in Android?
In the onCreate method of the ListActivity use setFastScrollEnabled:
getListView().setFastScrollEnabled(true);