SeekBar progressDrawable fitXY

SeekBar progressDrawable fitXY

我有一个带有 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

我的 phone 的屏幕比这张图片大。所以我想像 "fitXY" 一样使用这张图片。

实际上是乘以图像。

如何将图像设置为 match_parent?

谢谢!

您可以使用 9-patch.

我只是用油漆画的,所以可能有一些错误,但希望你能理解。您也可以缩小图像以减小其尺寸。

试试这个

<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" />

可绘制文件夹 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>