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

后端 未结 4 1738
花落未央
花落未央 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:48

    Try this beautiful custom scrollview

    Add following tags in your scrollview

        android:fadeScrollbars="false"
        android:scrollbarStyle="insideInset"
        android:scrollbarThumbVertical="@drawable/scrollview_thumb"
        android:scrollbarTrackVertical="@drawable/vertical_scrollview_track"
    

    Create following drawable in your drawable folder

    scrollview_thumb.xml

    
    
    
    
    
    
    
    

    vertical_scrollview_traack.xml

    
    
    
    
    
    
    
    
    

    Output

提交回复
热议问题