我在ScrollView中更改了
android:fadeScrollbars="false"
到ScrollBar是可见的,它工作正常。我的问题是可以改变ScrollBar的颜色吗? (默认为灰色,背景为灰色,因此之间的对比度很小。)
答案 0 :(得分: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>
答案 1 :(得分:6)
您可以使用:android:scrollbarThumbVertical="@drawable/yourImage"
,其中&#39; yourImage&#39;可以是你想要的颜色的小2像素图像