4

我正在尝试更改 ListView 的滚动条拇指的外观。

我在列表视图中添加了以下属性:

android:scrollbarThumbVertical="@drawable/scrollbar_vertical_thumb"


scrollbar_vertical_thumb.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" > 
    <gradient android:angle="0" android:endColor="#FF9900" android:startColor="#FF9900"/> 
    <corners android:radius="1dp" /> 
    <size android:width="3dp" /> 
</shape>


应用我的渐变后,我注意到我有滚动条或滚动条拇指,如下图所示(在页面的开头有左侧,然后变为第二个):

在此处输入图像描述

好像我没有覆盖滚动条拇指的主题样式。

有谁知道,可能是什么问题?

4

2 回答 2

3

通过添加“scrollbarThumbVertical”属性更新您的 ListView,

android:scrollbarThumbVertical="@drawable/scrollbar_vertical_thumb"

然后将以下内容添加到可绘制文件夹中的“scrollbar_vertical_thumb.xml”中,

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<gradient android:angle="0" android:endColor="#6699FF" android:startColor="#3333FF" />
<corners android:radius="1dp" />
<size android:width="10dp" />
</shape>
于 2016-06-10T10:58:40.573 回答
2

您覆盖了错误的属性。

你应该这样做:

<item name="android:fastScrollThumbDrawable">@drawable/scrollbar_vertical_thumb</item>
于 2015-01-13T21:58:21.767 回答