我正在做一个应用程序,我希望我的列表视图上的快速滚动选项卡成为自定义拇指选项卡。在线阅读文档我认为这样做可以:
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:drawSelectorOnTop="false"
android:cacheColorHint="@color/myWhite"
android:scrollbars="vertical"
android:scrollbarThumbVertical="@drawable/scrollthumb"
android:scrollbarSize="12dip"
android:fastScrollThumbDrawable="@drawable/scrollbar_thumb"
android:fastScrollEnabled="true"
/>
列表视图很好,自定义滚动条颜色正常工作,并且显示了 fastscrollbar 选项卡,但它使用的是默认拇指图像而不是png文件scrollbar_thumb。
拇指图像是否需要采用某种格式或大小?可以将其更改为自定义图形,如果不能,至少可以更改拇指的颜色吗?
任何帮助都感激不尽