0

我尝试了一些来自 Github 的库,但要么它们不工作,要么我不知道如何让它们工作。

我只想创建一个具有浮点值的搜索栏,中心为 0。

4

1 回答 1

1

您可以Slider在材料组件库中使用

    <com.google.android.material.slider.Slider
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:labelBehavior="withinBounds"
        android:valueFrom="-10.0"
        android:valueTo="10.0"
        android:stepSize="1.0"/>

在此处输入图像描述

注意:它需要库的版本1.2.0(当前为 1.2.0-rc01)。

于 2020-07-18T23:07:50.720 回答