自定义 ProgressBar
<ProgressBar
style="@android:style/Widget.ProgressBar.Horizontal"
android:layout_width="match_parent"
android:layout_height="5dp"
android:progressDrawable="@drawable/layer_list_custom_seekbar_2"
android:max="10000"
android:progress="120" /><?xml version="1.0" encoding="utf-8"?>
<scale xmlns:android="http://schemas.android.com/apk/res/android"
android:scaleWidth="100%"
android:scaleGravity="left">
<shape>
<size android:height="5dp" />
<corners android:radius="3dp" />
<solid android:color="@color/color4789F1" />
</shape>
</scale>Last updated