如何制作垂直范围搜索条?

时间:2018-02-19 12:15:23

标签: android seekbar android-vertical-seekbar

我有一个需要垂直范围搜索栏的应用程序,它有两个拇指用于调整位置。我不知道如何制作一个。请帮帮我.. 与此搜索栏类似。

enter image description here

1 个答案:

答案 0 :(得分:2)

好的我找到了这个库:

https://github.com/edmodo/range-bar

<com.edmodo.rangebar.RangeBar
        android:id="@+id/rb"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:rotation="90"
        app:tickCount="16"
         />

int left_index = rb.getLeftIndex();

int right_index = rb.getRightIndex();

希望它有用