You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
858 B
XML
26 lines
858 B
XML
2 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
||
|
<!--定义seekbar滑动条的底色-->
|
||
|
<item android:id="@android:id/background">
|
||
|
<shape>
|
||
|
<corners android:radius="@dimen/_20dp" />
|
||
|
<gradient
|
||
|
android:angle="270"
|
||
|
android:centerColor="@color/_505971"
|
||
|
android:centerY="0.75"
|
||
|
android:endColor="@color/_505971"
|
||
|
android:startColor="@color/_505971" />
|
||
|
</shape>
|
||
|
</item>
|
||
|
<!--定义seekbar滑动条进度颜色-->
|
||
|
<item android:id="@android:id/progress">
|
||
|
<clip>
|
||
|
<shape>
|
||
|
<corners android:radius="@dimen/_20dp" />
|
||
|
<solid android:color="@color/white" />
|
||
|
</shape>
|
||
|
</clip>
|
||
|
</item>
|
||
|
</layer-list>
|