lovesuper / RangeSeekBar

RangeSeekBar is a custom view for the Android platform that makes it possible to have a SeekBar with more thumbs on it. The bar can be setup programmatically or via XML for both Horizontal and Vertical usecases. It supports custom drawables for the backgrund, track and thumbs. It tries to mimic the behavior of the JQueryUI Slider widget on many areas.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RangeSeekBar

This is an Android View that tries to mimic the behavior of the JQueryUI Slider widget.

RangeSeekBar is a custom view for the Android platform that makes it possible to have a SeekBar with more thumbs on it. The bar can be setup programmatically or via XML for both Horizontal and Vertical usecases. It supports custom drawables for the backgrund, track and thumbs.

The view should work on Android devices from API level 3 and up (Android 1.5).


Usage

###Eclipse To include this library in your project please refer to Lars Vogel's tutorial on how to use Android libraries with Eclipse: http://www.vogella.com/tutorials/AndroidLibraryProjects/article.html

Lars explain things better than I ever could. You can include RangeSeekBar as a library source (import it as an Android Library in Eclipse) or you can use it as a .jar library (include by copying one of the release tag .jars to your project's libs/ folder).

Gradle build

To deploy the library to your local Maven repository run the following task:

$ ./gradlew install

Then, to use the library in your project add the following to your build.gradle:

dependencies {
    compile 'larpon.android.view:range-seek-bar:1.0.0'
}

Examples

For example usage please refer to the RangeSeekBarExamples repository: https://github.com/Larpon/RangeSeekBarExamples

About

RangeSeekBar is a custom view for the Android platform that makes it possible to have a SeekBar with more thumbs on it. The bar can be setup programmatically or via XML for both Horizontal and Vertical usecases. It supports custom drawables for the backgrund, track and thumbs. It tries to mimic the behavior of the JQueryUI Slider widget on many areas.

License:Other