ProgressBar的progressDrawable

卜季萌
2023-12-01

布局XML

<ProgressBar

            android:id="@+id/process_item_pb"
            style="?android:attr/progressBarStyleHorizontal"
            android:max="100"
            android:progress="50"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:progressDrawable="@drawable/custom_progress_horizontation"

            />


drawable文件夹下的custom_progress_horizontation的XML

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:id="@android:id/background">
        <shape >
            <solid android:color="#9c9c9c"/>
        </shape>
    </item>
    <item android:id="@android:id/secondaryProgress">
        <clip>
            <shape>
                <solid android:color="#F00"/>
            </shape>
        </clip>
    </item>
     <item android:id="@android:id/progress">
        <clip>
            <shape>
                <solid android:color="#D66D73"/>
            </shape>
        </clip>
    </item>


</layer-list>

 类似资料: