我为我的 ListView 使用了自定义滚动条。我使用了以下代码。
<ListView
android:id="@+id/bars"
android:layout_width="fill_parent"
android:layout_height="260dp"
android:layout_marginTop="10dp"
android:divider="@null"
android:dividerHeight="0dp"
android:fadeScrollbars="false"
android:fadingEdge="none"
android:scrollbarStyle="outsideInset"
android:scrollbarThumbVertical="@drawable/scrollbar_large1"
android:scrollingCache="false" />
滚动条会根据该 ListView 中的项目数量进行拉伸或收缩。如果项目较少,滚动条会被拉伸并且看起来不太好。如何制作滚动条图像,而不取决于列表项的数量?