Skip to content Skip to sidebar Skip to footer

Android: Scrollbar Accelerator?

I'm writing an Android application that contains lots of long lists and I need to accelerate scrolling somehow. The Android Contacts application for example uses a list of letters

Solution 1:

<ListView...android:fastScrollEnabled="true"/>

and this to "jump" in listView:

http://developer.android.com/reference/android/widget/SectionIndexer.html

Post a Comment for "Android: Scrollbar Accelerator?"