美文网首页
ProgressBar设置背景颜色渐变(新)

ProgressBar设置背景颜色渐变(新)

作者: Wood木木 | 来源:发表于2018-09-12 18:29 被阅读0次

    <ProgressBar
    android:id="@+id/progressSelf"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    style="@style/Widget.AppCompat.ProgressBar.Horizontal"
    android:progressDrawable="@drawable/custom_progress"
    />

    这样设置progressBar。再设定custom_progress.xml。OK搞定。可以非常容易就设置progressbar的颜色。

    <?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="5dp"/>
    <solid android:color="#EFEFEF"/>
    </shape>
    </item>
    <item android:id="@android:id/progress">
    <clip>
    <shape android:shape="rectangle">
    <corners android:radius="5dp"/>
    <gradient android:angle="45"
    android:startColor="#f00"
    android:endColor="#f90"/>
    </shape>
    </clip>
    </item>
    </layer-list>

    相关文章

      网友评论

          本文标题:ProgressBar设置背景颜色渐变(新)

          本文链接:https://www.haomeiwen.com/subject/fqjbgftx.html