1

所以我有一个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 上它根本不显示 - 在模拟器和设备上。

谁能告诉我为什么?

4

1 回答 1

1

您的适配器是否在实施SectionIndexer

package android.widget;

public interface SectionIndexer {
    Object[] getSections();

    int getPositionForSection(int var1);

    int getSectionForPosition(int var1);
}
于 2016-04-19T01:11:37.343 回答