Change scrollbar color in Android

后端 未结 2 1620
孤独总比滥情好
孤独总比滥情好 2020-12-04 15:19

Is it possible to change the color or appearance of the scrollbar in a ScrollView or ListView?

2条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-04 16:14

    You can set Listview property as

    android:scrollbarSize="10dp"
    android:scrollbarThumbVertical="@drawable/custom_scroll_style"
    

    Here custom_scroll_style is a xml file under the drawable folder. Lets create the custom_scroll_style.xml.

    
    
    
    
    
    
    
    
    
    
    

    Here I got a Orange color scrollbar. You can use images also if the image size is less than 2px instead of xml.

提交回复
热议问题