I do ListView with custom adapter which implement SectionIndexer. When I type only minSdkVersion = 8 in Manifest file, all works fine. But if I add targetSdkVersion = 11 (or more) to Manifest, fast scrollbar starts roll out of screen when I scrolling the list, but there is not the end of the list.
And one more moment: if I add targetSdkVersion = 11 to manifest and do list adapter without SectionIndexer implementing, scrollbar works fine too.
But i need targetSdkVersion = 11 or more, and need SectionIndexer implement.
Any ideas?
My guess is it’s because you didn’t correctly implement getSectionForPosition(int position) method.
This is whet I do: