自定义Android进度条

时间:2015-09-06 21:17:58

标签: android android-progressbar

我正在尝试设置android进度条的样式,如下所示,其中包含多个部分。

enter image description here

需要更改哪些属性?

这是我的自定义xml文件。

<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:id="@android:id/background">
<shape>
  <corners android:radius="5dip" />
  <gradient
    android:angle="270"
    android:centerColor="@color/customeprogresscolor"
    android:centerY="0.5"
    android:endColor="@color/customeprogresscolor"
    android:startColor="@color/customeprogresscolor" />
</shape>
</item>
<item android:id="@android:id/progress">
<clip>
  <shape>
    <solid android:color="@color/yellowCadmiumLight"/>
  </shape>
</clip>
</item>
</layer-list>

0 个答案:

没有答案