我正在尝试设置android进度条的样式,如下所示,其中包含多个部分。
需要更改哪些属性?
这是我的自定义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>