Skip to content

Latest commit

 

History

History
77 lines (56 loc) · 2.4 KB

README_ZH.md

File metadata and controls

77 lines (56 loc) · 2.4 KB

Release Version

注意

RangeSeekBar v2.x 强势来袭!!!

v2.x的API 和 v1.x 有很大不同,这是因为我重构了项目。我强烈建议你使用v2.x因为它支持更强大的属性和方法. 如果你仍想使用v1.x, 请看 RangeSeekBar v1.x Guide

用法

Dependencies

    allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

	dependencies {
		// sample: implementation 'com.github.Jay-Goo:RangeSeekBar:v2.0.4'
	        implementation 'com.github.Jay-Goo:RangeSeekBar:Release Version'
	}

RangeSeekBar

 <com.jaygoo.widget.RangeSeekBar
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:rsb_mode="single"
        />

VerticalRangeSeekBar

  <com.jaygoo.widget.VerticalRangeSeekBar
        android:layout_width="50dp"
        android:layout_height="300dp"
        app:rsb_mode="range"
	app:rsb_orientation="right"
        />

你可以认为VerticalRangeSeekBarRangeSeekBar 旋转90度得到的,它和 RangeSeekBar 的属性用法一致.唯一的不同就是 rsb_orientation,它是用来控制旋转的方向的.

属性

如果你想了解更多地属性,请参看 attrs

WIKI

你可以从wiki获取更多的信息和用法.

给我个Star吧

真心希望你能喜欢RangeSeekBar, Star 是对我最大的支持,谢谢!

License

Copyright 2018 JayGoo

Licensed under the Apache License.