如何制作负值的seekBar?

How to make a seekBar with negative values?

我尝试了 Github 中的一些库,但要么它们不起作用,要么我不知道如何使它们起作用。

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

您可以使用 Material 组件库中的 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)。