SeekBar progressDrawable fitXY

时间:2018-07-03 06:28:46

标签: android android-seekbar

我有一个带有progressDrawable的SeekBar。

<SeekBar
    android:id="@+id/seekbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="8dp"
    android:layout_marginTop="8dp"
    android:progress="50"
    android:progressDrawable="@drawable/image"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

在此搜索栏中,我使用了image.png

enter image description here

我的手机的屏幕大于此图像。所以我想使用“ fitXY”之类的图片。

实际上是将图像相乘。 enter image description here

如何将图像设置为match_parent?

谢谢!

2 个答案:

答案 0 :(得分:1)

尝试这个

<SeekBar
        android:id="@+id/seekbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        android:layout_marginTop="8dp"
        android:progress="50"
        android:progressDrawable="@drawable/seekbar_bg"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

Drawble文件夹 seekbar_bg.xml

<?xml version="1.0" encoding="utf-8"?>
    <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
        <item
            android:left="300dip">
            <shape
                xmlns:android="http://schemas.android.com/apk/res/android"
                android:shape="rectangle" >
                <solid android:color="#0000FF" />
            </shape>
        </item>
        <item android:right="400dip">
            <shape
                xmlns:android="http://schemas.android.com/apk/res/android"
                android:shape="rectangle" >
                <solid android:color="#ff0000" />
            </shape>
        </item>

    </layer-list>

答案 1 :(得分:0)

您可以使用9-patch

我只是用油漆做的,所以可能会有一些错误,但是希望您能理解。另外,您可以缩小图像以减小其大小。

example.9.png