This question already has answers here:
Custom Listview Fast Scrollbar in android

(2个答案)



How to use fast scroll in android?

(8个答案)


3个月前关闭。





您好,我正在做一个列表视图,我可以使滚动条显示出来,但是它什么也没做。

    <ListView
        android:id="@+id/listView"
        style="@style/CustomTheme"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scrollbarSize="30dip"
        android:scrollbarStyle="outsideInset"
        android:scrollbarThumbVertical="@color/blue"
        android:scrollbarTrackVertical="@drawable/side_nav_bar" />


我如何使它工作?

最佳答案

好的,所以我需要将fastScroll添加到我的活动中。

<ListView
    android:id="@+id/listView"
    style="@style/CustomTheme"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scrollbarSize="30dip"
    android:scrollbarStyle="outsideInset"
    android:fastScrollEnabled="true"
    android:scrollbarThumbVertical="@color/blue"
    android:scrollbarTrackVertical="@drawable/side_nav_bar" />

07-24 09:37
查看更多