seekbar的背景图片显示了两次

时间:2018-04-12 09:12:00

标签: android seekbar

进度条显示两次。

enter image description here

我的XML代码:

enter image description here

风格:

enter image description here

如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

您可以添加渐变,例如

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

    <gradient
        android:angle="45"
        android:endColor="@color/colorgreenheader"
        android:centerColor="@color/color_neartowhite"
        android:startColor="@color/color_grey_light" />

    <corners android:radius="8sp" />
    <size android:width="8sp"/>
    <padding
        android:left="0.5sp"
        android:right="0.5sp" />

</shape>