为什么快速滚动条没有显示在Lollipop中

时间:2015-05-06 08:13:58

标签: android listview android-5.0-lollipop fastscroll

所以我有一个ListView,我试图像这样添加快速滚动条:

<ListView
    android:id="@+id/my_list"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fastScrollAlwaysVisible="true"
    android:fastScrollEnabled="true" />

这在API 19上运行良好,但在API 21或22上它根本不会出现 - 在模拟器和设备上。

谁能告诉我为什么?

1 个答案:

答案 0 :(得分:1)

您的适配器是否正在实施SectionIndexer

package android.widget;

public interface SectionIndexer {
    Object[] getSections();

    int getPositionForSection(int var1);

    int getSectionForPosition(int var1);
}