我尝试使用选择器(state_pressed,state_focus,...)更改滚动条的可绘制对象,但我没有工作。
滚动视图
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scroll"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbarSize="5dp"
android:scrollbarThumbVertical="@drawable/custom_scrollbar" >
选择器
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:state_pressed="true"
android:drawable="@drawable/scrollbar_pressed" />
<item
android:state_focused="true"
android:drawable="@drawable/scrollbar_pressed" />
<item android:drawable="@drawable/scrollbar" />
</selector>
两个可绘制对象之一。唯一的区别是颜色
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="@color/grey"
android:endColor="@color/dark_grey"
android:angle="0" />
<stroke
android:width="1dp"
android:color="@color/white"/>
<corners android:radius="6dp" />
</shape>
任何其他解决方案?