# IndicatorSeekBar [![DOWNLOAD](https://api.bintray.com/packages/warkiz/maven/indicatorseekbar/images/download.svg)](https://bintray.com/warkiz/maven/indicatorseekbar/_latestVersion) [![API](https://img.shields.io/badge/API-14%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=14) [![Android Arsenal]( https://img.shields.io/badge/Android%20Arsenal-IndicatorSeekBar-green.svg?style=flat )]( https://android-arsenal.com/details/1/6434 ) 这是一个安卓自定义SeekBar库。 另外, 如果你不需要指示器并且希望文字显示在SeekBar的顶部, 请看另外一个[SeekBar库](https://github.com/warkiz/TickSeekBar)。 [ English.md ](https://github.com/warkiz/IndicatorSeekBar/blob/master/README.md) ## 预览 ## 截图 ## 演示 [下载demo.apk](https://github.com/warkiz/IndicatorSeekBar/raw/master/apk/demo.apk) 扫码下载: ## 初始化 ```gradle implementation 'com.github.warkiz.widget:indicatorseekbar:2.1.2' ``` ## 使用 #### xml ```xml ``` #### Java ```Java IndicatorSeekBar seekbar = IndicatorSeekBar .with(getContext()) .max(110) .min(10) .progress(53) .tickCount(7) .showTickMarksType(TickMarkType.OVAL) .tickMarksColor(getResources().getColor(R.color.color_blue, null)) .tickMarksSize(13)//dp .showTickTexts(true) .tickTextsColor(getResources().getColor(R.color.color_pink)) .tickTextsSize(13)//sp .tickTextsTypeFace(Typeface.MONOSPACE) .showIndicatorType(IndicatorType.ROUNDED_RECTANGLE) .indicatorColor(getResources().getColor(R.color.color_blue)) .indicatorTextColor(Color.parseColor("#ffffff")) .indicatorTextSize(13)//sp .thumbColor(getResources().getColor(R.color.colorAccent, null)) .thumbSize(14) .trackProgressColor(getResources().getColor(R.color.colorAccent,null)) .trackProgressSize(4) .trackBackgroundColor(getResources().getColor(R.color.color_gray)) .trackBackgroundSize(2) .build(); ``` ## 指示器总是停留 将IndicatorSeekBar放进IndicatorStayLayout后可以使Indicator总是停留,在此之前,请确保你使用属性去显示indicator. #### Xml ```xml ....../> ``` #### Java ```Java IndicatorSeekBar seekbar = IndicatorSeekBar .with(getContext()) .max(50) .min(10) .showIndicatorType(IndicatorType.RECTANGLE) //显示指示器属性不能为none ... .build(); new IndicatorStayLayout(getContext()).attachTo(seekbar); ``` ## 自定义指示器文字 向IndicatorSeekBar设置一个带有占位符的格式字符串,`${PROGRESS}` 或者 `${TICK_TEXT}`,指示器的文字就会改变. 例如: 如果你想显示带百分号后缀的指示器进度文字: `%` ,代码如下: ```Java seekbar.setIndicatorTextFormat("${PROGRESS} %") Kotlin: seekbar.setIndicatorTextFormat("\${PROGRESS} %") ``` 如果你想显示带前缀 `I am`的指示器tick text文字 ,代码如下: ```Java seekbar.setIndicatorTextFormat("I am ${TICK_TEXT}") Kotlin: seekbar.setIndicatorTextFormat("I am \${TICK_TEXT}") ``` ## 自定义每一节的track块颜色 seekbar上每一块track的颜色都能被设置: ```Java seekBar.customSectionTrackColor(new ColorCollector() { @Override public boolean collectSectionTrackColor(int[] colorIntArr) { //the length of colorIntArray equals section count colorIntArr[0] = getResources().getColor(R.color.color_blue, null); colorIntArr[1] = getResources().getColor(R.color.color_gray, null); colorIntArr[2] = Color.parseColor("#FF4081"); ... return true; //True if apply color , otherwise no change } }); ``` ## 支持Selector类型的图片或颜色 你可以为滑块和tick标记设置StateListDrawable 或者 ColorStateList, 而且,tick下面的文字也支持ColorStateList,使用的格式如下: 滑块图片 selector: ```xml ``` 滑块颜色 selectorr: ```xml ``` tick标记图片 selector: ```xml ``` tick标记颜色 selector: ```xml ``` tick文字颜色 selector: ```xml ``` ## 监听器 ```Java seekBar.setOnSeekChangeListener(new OnSeekChangeListener() { @Override public void onSeeking(SeekParams p) { Log.i(TAG, seekParams.seekBar); Log.i(TAG, seekParams.progress); Log.i(TAG, seekParams.progressFloat); Log.i(TAG, seekParams.fromUser); //when tick count > 0 Log.i(TAG, seekParams.thumbPosition); Log.i(TAG, seekParams.tickText); } @Override public void onStartTrackingTouch(IndicatorSeekBar seekBar) { } @Override public void onStopTrackingTouch(IndicatorSeekBar seekBar) { } }); ``` ## 属性 [ attr.xml ](https://github.com/warkiz/IndicatorSeekBar/blob/master/indicatorseekbar/src/main/res/values/attr.xml) ## Donation by [ Paypal ](https://www.paypal.me/BuyMeACupOfTeaThx), thanks So happy to receive your donation or encouraging words , and I will post this on my [ thanks-lists ](https://github.com/warkiz/IndicatorSeekBar#Thanks-lists) , thanks. ## 打赏([ 支付宝 ](https://github.com/warkiz/IndicatorSeekBar/blob/master/app/src/main/res/mipmap-xxhdpi/alipay.png?raw=true))([ 微信支付 ](https://github.com/warkiz/IndicatorSeekBar/blob/master/app/src/main/res/mipmap-xxhdpi/wechat_pay.png?raw=true)) 自从文档里公布了二维码,我收到国内的朋友的一些打赏,虽然金额不大,但是一些支持和鼓励的话语还是让我感到开心,非常感谢。 感谢所有之前支持我的朋友。如果下次你要给我打赏,可以顺带写上你的github地址,我会在这里用[ 链接 ](https://github.com/warkiz/IndicatorSeekBar#Thanks-lists)贴出来,算是相互鼓励。 ## 联系我 如果你对项目有疑问,欢迎通过下面的方式联系我: 1. 提交issue. 2. 发邮件, "warkiz".concat("4j").concat("@").concat("gmail.com") ## 证书 Copyright (C) 2017 zhuangguangquan 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.