可以改变ScrollBar的颜色吗?

Dam*_*mir 13 android android-widget

我改变了ScrollView

android:fadeScrollbars="false"
Run Code Online (Sandbox Code Playgroud)

ScrollBar是可见的,它工作正常.我的问题是可以改变ScrollBar的颜色吗?(默认为灰色,背景为灰色,因此对比度较小).

Bla*_*elt 32

你可以用 android:scrollbarThumbVertical="@drawable/youdrawable

就我而言,例如你的抽奖是:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">

    <gradient android:startColor="#66C0C0C0" android:endColor="#66C0C0C0"
        android:angle="45"/>

    <corners android:radius="6dp" />

</shape>
Run Code Online (Sandbox Code Playgroud)


Sau*_*rma 6

您可以使用:android:scrollbarThumbVertical="@drawable/yourImage" ,其中'yourImage'可以是您想要的颜色的小2像素图像