ht_update_progress_bg.xml 819 字节
<?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 android:shape="rectangle">
            <corners android:radius="68dp" />
            <gradient
                android:endColor="#C8D3DE"
                android:startColor="#C8D3DE" />
        </shape>
    </item>
    <item android:id="@android:id/progress">
        <clip><!--可裁剪对象-->
            <shape android:shape="rectangle">
                <corners android:radius="68dp" />
                <gradient
                    android:angle="45"
                    android:endColor="@color/ht_main_color"
                    android:startColor="@color/ht_main_color" />
            </shape>
        </clip>
    </item>
</layer-list>