自定义Seekbar极端问题

时间:2016-01-08 14:16:32

标签: android

关于最后那件小事的任何想法是什么?如果我将进度设置为0并移除拇指,则左侧的内容相同。 我注意到它是拇指在最右边(也是左边)的地方,但我似乎无法移除它。

enter image description here

这是我正在使用的xml:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@android:id/background">
        <nine-patch
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:dither="true"
            android:src="@drawable/filler_bar_bckgnd_white"
            />
    </item>
    <item android:id="@android:id/secondaryProgress">
        <clip>
            <bitmap
                xmlns:android="http://schemas.android.com/apk/res/android"
                android:src="@drawable/filler_bar_bckgnd_green"
                />
        </clip>
    </item>
    <item
        android:id="@android:id/progress">
        <clip>
            <bitmap
                xmlns:android="http://schemas.android.com/apk/res/android"
                android:src="@drawable/filler_bar_bckgnd_green"
                />
        </clip>
    </item>
</layer-list>

我设置它是这样的:

        <SeekBar
            android:id="@+id/my_seekbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:max="100"
            android:progress="40"
            android:progressDrawable="@drawable/seekbar_progress"
            android:thumb="@drawable/filler_bar_icon" />

这些是使用的图像:

enter image description here

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

我确实发现了这个问题。问题是9patch图像。我玩过它,似乎我应该这样做:

enter image description here