how to change color of the actual scroll in ScrollView android?

后端 未结 4 1737
花落未央
花落未央 2020-12-24 04:58

I\'m wondering if it\'s possible to change the color of the ScrollView.

I\'m not referring to the background color or the edges.
I attached a print screen of th

4条回答
  •  攒了一身酷
    2020-12-24 05:52

    Create a scroll bar in drawable(scrollbar.xml) using this

    
        
        
    
    

    and add this scroll bar like android:scrollbarThumbVertical="@drawable/scrollbar" to your ListView

    OR

    put the following attribute to your layout

    android:scrollbarThumbVertical="@android:color/white"
    

    OR

    create a image and put it in drawable. then add the following property to your layout

    android:scrollbarThumbVertical="@drawable/scroll_bar_vertical"
    

提交回复
热议问题