Android中的SeekBar自定义样式

时间:2015-10-18 13:40:36

标签: android seekbar android-seekbar

我有一个自定义样式的SeekBar。这是xml文件。 custom_thumb.xml

<?xml version="1.0" encoding="utf-8"?>

<size android:height="8dp"
    android:width="8dp"/>
<solid android:color="#ffffff"
    />

和custom_progress.xml

<?xml version="1.0" encoding="utf-8"?>

<item>
    <shape>
        <corners
            android:radius="5dp" />
        <solid android:color="#ababab" />
    </shape>
</item>

<item>
    <clip>
        <shape>
            <corners
                android:radius="5dp" />
            <solid android:color="#ffffff" />
        </shape>
    </clip>
</item>

它适用于任何Android模拟器,看起来像这样 SeekBarOnEmulator

但是在设备上它会发生变化,看起来像SeekBarOnDevice

我该如何解决这个问题?

0 个答案:

没有答案