# EasySeekBar **Repository Path**: jansonshen2016/EasySeekBar ## Basic Information - **Project Name**: EasySeekBar - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-05-30 - **Last Updated**: 2025-05-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # EasySeekBar An Android Seekbar # effect ![img](https://github.com/Diegoing/EasySeekBar/blob/master/gifs/seekbar.gif) ![img](https://github.com/Diegoing/EasySeekBar/blob/master/gifs/seekbar1.gif) ![img](https://github.com/Diegoing/EasySeekBar/blob/master/gifs/seekbar2.gif) ![img](https://github.com/Diegoing/EasySeekBar/blob/master/gifs/seekbar3.gif) # Start 1. Add root build.gradle repositories { // ... maven { url 'https://www.jitpack.io' } } 2. Add build.gradle dependencies { implementation 'com.github.Diegoing:EasySeekBar:0.0.1' } # Attributes name | format | description ------ configuration | string | vertical、horizontal、circle、semicircle progress_bg_color | color | progress background color progress_color | color | progress color circle_r | dimension | Control the radius of the ball line | dimension | Control the length or radius of the radius circle_color | color | Control the color of the ball max_progress | integer | max value min_progress | integer | min value progress_with | integer | progress width # Example 1. xml 2. code EasySeekBar esb_v1 = findViewById(R.id.esb_v1); esb_v1.setEasySeekBarLister(new EasySeekBar.EasySeekBarLister() { @Override public void onProgress(int pro) { Toast.makeText(VerticalActivity.this,pro+"",Toast.LENGTH_SHORT).show(); } }); esb_v1.setValue(60); # Thanks [csdn](https://blog.csdn.net/Diegoing/article/details/86482876)