改變ScrollView滾動條的樣式

第一步

定義樣式的drawable

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <!--定義顏色-->
    <solid android:color="@color/bg_gray_e0e0e0"/>
    <!--定義粗細-->
    <size android:width="2dp"/>
    <!--還可以根據需要定義其他樣式-->
</shape>

第二步

通過ScrollView的scrollbarThumbVertical屬性使用上面的drawable即可

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_marginTop="50dp"
        android:layout_weight="1"
        android:fadeScrollbars="false"
        android:scrollbars="vertical"
        android:scrollbarThumbVertical="@drawable/bg_scroll_bar"
        android:layout_marginLeft="50dp"
        android:layout_marginRight="50dp">
            <TextView
                android:id="@+id/tv_content"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                tools:text="是非得失水電費水電費水電費水電費水電費水電費似懂非懂盛世嫡妃 "
                android:lineSpacingMultiplier="1.6"
                android:textSize="23sp"
                android:textColor="#333333"/>
    </ScrollView>

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章