android Progress 的第二进度条样式

2018-07-17  本文已影响7人  yunhen

android:progressDrawable属性中设置一下的drawable

<?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>
            <!--<corners android:radius="1dp" />-->
            <!--<gradient-->
            <!--android:angle="270"-->
            <!--android:centerColor="#2B2B2B"-->
            <!--android:centerY="0.75"-->
            <!--android:endColor="#ff747674"-->
            <!--android:startColor="#ff9d9e9d" />-->
            <solid android:color="#ff666464"/>
        </shape>
    </item>

    <item android:id="@android:id/progress">
        <clip>
            <shape>
                <!--<corners android:radius="1dp" />-->
                <!--<gradient-->
                <!--android:angle="270"-->
                <!--android:centerColor="#ff3399CC"-->
                <!--android:centerY="0.75"-->
                <!--android:endColor="#ff6699CC"-->
                <!--android:startColor="#ff0099CC" />-->
                <solid android:color="#ff84f4ec"/>
            </shape>
        </clip>
    </item>
    <item android:id="@android:id/secondaryProgress">
        <clip>
            <shape>
                <!--<corners android:radius="1dp" />-->
                <!--<gradient-->
                <!--android:angle="270"-->
                <!--android:centerColor="#ff3399CC"-->
                <!--android:centerY="0.75"-->
                <!--android:endColor="#ff6699CC"-->
                <!--android:startColor="#ff0099CC" />-->
                <solid android:color="#8094dada"/>
            </shape>
        </clip>
    </item>
</layer-list>

设置进度条的进度图片

android:thumb

上一篇下一篇

猜你喜欢

热点阅读