您的位置:首页 > 移动开发 > Android开发

android 一款圆环形的选择器,支持叠加使用

2016-11-08 11:19 676 查看

CircleSeekbar

下载地址:https://github.com/feeeei/CircleSeekbaran android circle seekbar library

 

 

 

 

 

quick start

1.Add root build.gradle

repositories {
// ...
maven { url "https://jitpack.io" }
}

2.Add build.gradle

dependencies {
compile 'com.github.feeeei:CircleSeekbar:v1.1.1'
}

3.Added to the XML

<io.feeeei.circleseekbar.CircleSeekBar
android:id="@+id/seekbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:wheel_max_process="100"
/>

attrs

<!-- process -->
<attr name="wheel_max_process" format="integer" />
<attr name="wheel_cur_process" format="integer" />

<!-- reached style -->
<attr name="wheel_reached_color" format="color" />
<attr name="wheel_reached_width" format="dimension" />

<!-- unReached style -->
<attr name="wheel_unreached_color" format="color" />
<attr name="wheel_unreached_width" format="dimension" />

<!-- pointer style -->
<attr name="wheel_pointer_color" format="color" />
<attr name="wheel_pointer_radius" format="dimension" />

<!--shadows style -->
<attr name="wheel_has_pointer_shadow" format="boolean" />
<attr name="wheel_has_wheel_shadow" format="boolean" />
<attr name="wheel_pointer_shadow_radius" format="dimension" />
<attr name="wheel_shadow_radius" format="dimension" />

<!-- if you want to open the wheel shadow, open this can speed up the rendering speed -->
<attr name="wheel_has_cache" format="boolean" />

<!-- if you want to block touchListener,use like processBar,
only allow the code to control the schedule, you can change this attribute to false -->
<attr name="wheel_can_touch" format="boolean" />

<attr name="wheel_scroll_only_one_circle" format="boolean" />
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: