Android - 如何更改默认的SeekBar厚度?

时间:2015-08-25 19:18:59

标签: android seekbar android-seekbar

我有这个SeekBar:

        <SeekBar
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="26dp"
        android:id="@+id/seekbar"
        android:visibility="gone"
        android:maxHeight="3dp"/>

我尝试使用maxHeight更改此SeekBar厚度。但没有改变。它看起来像这样:

enter image description here

我想将此SeekBar的厚度更改为3dp,并使其如下所示: enter image description here

所以我的问题是有可能以某种方式改变SeekBar的厚度吗?如果是,怎么样?

6 个答案:

答案 0 :(得分:23)

您必须更改progressDrawable的{​​{1}}和thumb以调整其厚度:

SeekBar

添加可绘制文件夹 seek_bar.xml

<SeekBar
    android:id="@+id/seekBar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/indSeekBar"
    android:layout_marginTop="48dp"
    android:progressDrawable="@drawable/seek_bar"
    android:thumb="@drawable/seek_thumb"
    />

seek_thumb.xml

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@android:id/background">
        <shape
            android:shape="line">
            <stroke
                android:color="@color/seek_bar_background"
                android:width="@dimen/seek_bar_thickness"/>
        </shape>
    </item>

    <item android:id="@android:id/progress">
        <clip>
            <shape
                android:shape="line">
                <stroke
                    android:color="@color/seek_bar_progress"
                    android:width="@dimen/seek_bar_thickness"/>
            </shape>
        </clip>
    </item>

    <item android:id="@android:id/secondaryProgress">
        <clip>
            <shape
                android:shape="line">
                <stroke
                    android:color="@color/seek_bar_secondary_progress"
                    android:width="@dimen/seek_bar_thickness"/>
            </shape>
        </clip>
    </item>
</layer-list>

添加尺寸资源(更改此尺寸以调整厚度):

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">
    <size
        android:height="@dimen/seek_bar_thumb_size"
        android:width="@dimen/seek_bar_thumb_size"
        />
    <solid android:color="@color/seek_bar_progress"/>
</shape>

添加色彩资源:

<dimen name="seek_bar_thickness">4dp</dimen>
<dimen name="seek_bar_thumb_size">20dp</dimen>

enter image description here

答案 1 :(得分:8)

你应该这样做:

<SeekBar
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="20dp"
    android:thumb="@drawable/seek"
    android:progressDrawable="@drawable/seek_style"
    />

拇指是可以拖动的圆圈,progressDrasable是进步的风格。

<强> seek_style.xml

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@android:id/background">
        <shape>
            <corners android:radius="5dip" />
            <gradient
                android:startColor="#ff9d9e9d"
                android:centerColor="#ff5a5d5a"
                android:centerY="0.75"
                android:endColor="#ff747674"
                android:angle="270"
                />
        </shape>
    </item>

    <item android:id="@android:id/secondaryProgress">
        <clip>
            <shape>
                <corners android:radius="5dip" />
                <gradient
                    android:startColor="#80ffd300"
                    android:centerColor="#80ffb600"
                    android:centerY="0.75"
                    android:endColor="#a0ffcb00"
                    android:angle="270"
                    />
            </shape>
        </clip>
    </item>

    <item android:id="@android:id/progress">
        <clip>
            <shape>
                <corners android:radius="5dip" />
                <gradient
                    android:startColor="#ff0099CC"
                    android:centerColor="#ff3399CC"
                    android:centerY="0.75"
                    android:endColor="#ff6699CC"
                    android:angle="270"
                    />
            </shape>
        </clip>
    </item>
</layer-list>

<强> seek.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
    <size
        android:width="20dp"
        android:height="20dp"
        />
    <solid android:color="#60f0"/>
</shape>

答案 2 :(得分:1)

我用以下方法解决了这个问题: android:scaleX =“ 2”

答案 3 :(得分:0)

只需将 scaleY 设置为搜索栏高度,并设置填充以删除外部填充。

 <androidx.appcompat.widget.AppCompatSeekBar
        android:id="@+id/seekbar"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:paddingStart="0sp"
        android:paddingTop="0sp"
        android:scaleY="3" />

答案 4 :(得分:0)

您可以使用材料组件库提供的Slider

使用 app:trackHeight="xxdp" (默认值为4dp)更改跟踪栏的高度。

    <com.google.android.material.slider.Slider
        app:trackHeight="12dp"
        .../>

enter image description here

如果您还想更改拇指半径,则可以使用 app:thumbRadius 属性:

        <com.google.android.material.slider.Slider
            app:trackHeight="12dp"
            app:thumbRadius="16dp"
            ../>
           

enter image description here

它需要库的版本 1.2.0

答案 5 :(得分:-5)

您可以使用minHeightmaxHeight

属性更改搜寻条的厚度

android:minHeight="5dp"

android:maxHeight="5dp"

以下是我在xml中的表现:

<SeekBar
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="26dp"
    android:id="@+id/seekbar"
    android:visibility="gone"
    android:minHeight="5dp"
    android:maxHeight="5dp"/>