<?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="3dip" />
|
<gradient android:startColor="#ffedeff2"
|
android:centerColor="#ffedeff2"
|
android:centerY="0.75"
|
android:endColor="#ffedeff2"
|
android:angle="270"
|
/>
|
</shape>
|
</item>
|
|
<!-- 设置进度条颜色(蓝色) -->
|
<item android:id="@android:id/progress">
|
<clip>
|
<shape>
|
<corners android:radius="3dip" />
|
<gradient android:startColor="#FFf7db00"
|
android:endColor="#FFf7db00" />
|
</shape>
|
</clip>
|
</item>
|
|
</layer-list>
|