# TickSeekBar **Repository Path**: zhuangguangquan/TickSeekBar ## Basic Information - **Project Name**: TickSeekBar - **Description**: 这是一个android自定义SeekBar库. - **Primary Language**: Android - **License**: Not specified - **Default Branch**: master - **Homepage**: https://github.com/warkiz/TickSeekBar - **GVP Project**: No ## Statistics - **Stars**: 24 - **Forks**: 3 - **Created**: 2018-06-08 - **Last Updated**: 2026-01-31 ## Categories & Tags **Categories**: android-modules **Tags**: None ## README # TickSeekBar [![DOWNLOAD](https://api.bintray.com/packages/warkiz/maven/tickseekbar/images/download.svg)](https://bintray.com/warkiz/maven/tickseekbar/_latestVersion) [![API](https://img.shields.io/badge/API-14%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=14) This is a customizable SeekBar library on Android. Also, If you need Indicator to show top of seek bar, please see [the other library](https://github.com/warkiz/IndicatorSeekBar). [ 中文.md ](https://github.com/warkiz/TickSeekBar/blob/master/README_zh.md) ## OverView ## Screenshot ## Demo [download](https://github.com/warkiz/TickSeekBar/blob/master/apk/demo.apk) Scan QR code to download: ## Setup ```gradle implementation 'com.github.warkiz.tickseekbar:tickseekbar:0.1.4' ``` ## Usage #### xml ```xml ``` #### Java ```Java TickSeekBar seekBar = TickSeekBar .with(getContext()) .max(200) .min(10.2f) .progressValueFloat(true) .progress(33) .tickCount(7) .showTickMarksType(TickMarkType.DIVIDER) .tickMarksColor(getResources().getColor(R.color.color_blue)) .tickMarksSize(6)//dp .tickTextsSize(13)//sp .showTickTextsPosition(TextPosition.ABOVE) .tickTextsColorStateList(getResources().getColorStateList(R.color.selector_tick_texts_3_color)) .thumbColor(Color.parseColor("#ff0000")) .thumbSize(14) .trackProgressColor(getResources().getColor(R.color.colorAccent)) .trackProgressSize(4) .trackBackgroundColor(getResources().getColor(R.color.color_gray)) .trackBackgroundSize(2) .build(); ``` ## Custom section tracks color The color of every block of seek bar can also be custom. ```Java sectionSeekBar.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 drawable&color were supported You can set the StateListDrawable or ColorStateList for the thumb, tickMarks; Also, ColorStateList for tickTexts is supported, too. Usage's format acccording to: Thumb selector drawable: ```xml ``` Thumb selector color: ```xml ``` TickMarks selector drawable: ```xml ``` TickMarks selector color: ```xml ``` TickTexts selector color: ```xml ``` ## Listener ```Java seekBar.setOnSeekChangeListener(new OnSeekChangeListener() { @Override public void onSeeking(SeekParams seekParams) { 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(TickSeekBar seekBar) { } @Override public void onStopTrackingTouch(TickSeekBar seekBar) { } }); ``` ## Proguard ``` groovy -dontwarn com.warkiz.tickseekbar.** ``` ## Attributes [ attr.xml ](https://github.com/warkiz/TickSeekBar/blob/master/tickseekbar/src/main/res/values/attr.xml) ## Support & Contact me 感谢: 自从在文档里公布了二维码,我收到国内的朋友的一些打赏,虽然金额不大,但是一些支持和鼓励的话语还是让我感到开心,非常感谢。 感谢所有之前支持我的朋友。如果下次你要给我打赏,可以顺带写上你的github地址,我会在这里用链接贴出来,算是相互鼓励。 感谢你们的支持。 Feel free to contact me if you have any trouble on this project: 1. Create an issue. 2. Send mail to me, "warkiz".concat("4j").concat("@").concat("gmail.com") ## License Copyright (C) 2017 zhuangguangquan warkiz 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.