c0x12c / range-slider-view

Android Range Slider View
396 stars 88 forks source link

RangeSliderView

Maven Central Android Arsenal

Screenshots

Main screen

Features

Usage

Add a dependency to your build.gradle:

dependencies {
    compile 'com.github.channguyen:rsv:1.0.1'
}

Add the com.github.channguyen.rsv.RangeSliderView to your layout XML file.

<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:rsv="http://schemas.android.com/apk/res-auto"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical"
  >

  <com.github.channguyen.rsv.RangeSliderView
    android:id="@+id/rsv_small"
    android:layout_marginTop="50dp"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:layout_marginLeft="30dp"
    android:layout_marginRight="30dp"
    rsv:filledColor="#1A5F77"
    />

  <com.github.channguyen.rsv.RangeSliderView
    android:id="@+id/rsv_large"
    android:layout_marginTop="50dp"
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:layout_marginLeft="30dp"
    android:layout_marginRight="30dp"
    rsv:filledColor="#FF6600"
    />

</LinearLayout>

For more usage examples check the sample project.

Changelog

Version 1.0.1

Version 1.0.0

License

Copyright 2015 Chan Nguyen

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.