I’m looking to emulate the functionality in the latest Music app, namely the nice little cursor that pops up which allows one to scroll super fast to the artist/album/track they’re looking for:


Is there a method to enable functionality like this in a ListView in the Android SDK?
Have your list adapter implement SectionIndexer. The music app also makes use of AlphabetIndexer to do some of the heavy lifting. Also use
setFastScrollEnabled(true)on the actualListViewto enable this.Edit: If you’re not using a CursorAdapter, you won’t be able to use AlphabetIndexer. You might try looking at the implementation here and seeing how hard it would be to adapt it to work with an ArrayAdapter.