<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbarSize="3dp"
android:scrollbarThumbVertical="@drawable/scroll"
android:scrollbarThumbHorizontal="@drawable/scroll"
android:overScrollMode="never"
android:scrollbarStyle="outsideOverlay"
/>
android:scrollbarThumbVertical="@drawable/scroll" ,android:scrollbarThumbHorizontal="@drawable/scroll" 实现滚动条无效设置宽度变为有效
scroll.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#00BCD4"/>
<corners android:radius="5dp"/>
</shape>
|