所以我有一个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上它根本不会出现 - 在模拟器和设备上。
谁能告诉我为什么?
答案 0 :(得分:1)
您的适配器是否正在实施SectionIndexer?
package android.widget;
public interface SectionIndexer {
Object[] getSections();
int getPositionForSection(int var1);
int getSectionForPosition(int var1);
}