# CircularProgressBar **Repository Path**: icoo/CircularProgressBar ## Basic Information - **Project Name**: CircularProgressBar - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-11-07 - **Last Updated**: 2023-11-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

CircularProgressBar ================= sample [![Platform](https://img.shields.io/badge/platform-android-green.svg)](http://developer.android.com/index.html) [![API](https://img.shields.io/badge/API-14%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=14) [![Maven Central](https://img.shields.io/maven-central/v/com.mikhaellopez/circularprogressbar.svg?label=Maven%20Central)](https://search.maven.org/artifact/com.mikhaellopez/circularprogressbar) [![Twitter](https://img.shields.io/badge/Twitter-@LopezMikhael-blue.svg?style=flat)](http://twitter.com/lopezmikhael) This is an Android project allowing to realize a circular ProgressBar in the simplest way possible. Android app on Google Play USAGE ----- To make a circular ProgressBar add CircularProgressBar in your layout XML and add CircularProgressBar library in your project or you can also grab it via Gradle: ```groovy implementation 'com.mikhaellopez:circularprogressbar:3.1.0' ``` XML ----- ```xml ``` You must use the following properties in your XML to change your CircularProgressBar. | Properties | Type | Default | | ------------------------------------------------ | ------------------------------------------------------------ | --------------------- | | `app:cpb_progress` | integer | 0 | | `app:cpb_progress_max` | integer | 100 | | `app:cpb_indeterminate_mode` | boolean | false | | `app:cpb_progressbar_color` | color | BLACK | | `app:cpb_progressbar_color_start` | color | cpb_progressbar_color | | `app:cpb_progressbar_color_end` | color | cpb_progressbar_color | | `app:cpb_progressbar_color_direction` | left_to_right, right_to_left, top_to_bottom or bottom_to_top | left_to_right | | `app:cpb_progressbar_width` | dimension | 7dp | | `app:cpb_background_progressbar_color` | color | GRAY | | `app:cpb_background_progressbar_color_start` | color | GRAY | | `app:cpb_background_progressbar_color_end` | color | GRAY | | `app:cpb_background_progressbar_color_direction` | left_to_right, right_to_left, top_to_bottom or bottom_to_top | left_to_right | | `app:cpb_background_progressbar_width` | dimension | 3dp | | `app:cpb_round_border` | boolean | false | | `app:cpb_start_angle` | float | 0f (=top) | | `app:cpb_progress_direction` | to_right or to_left | to_right | KOTLIN ----- ```kotlin val circularProgressBar = findViewById(R.id.yourCircularProgressbar) circularProgressBar.apply { // Set Progress progress = 65f // or with animation setProgressWithAnimation(65f, 1000) // =1s // Set Progress Max progressMax = 200f // Set ProgressBar Color progressBarColor = Color.BLACK // or with gradient progressBarColorStart = Color.GRAY progressBarColorEnd = Color.RED progressBarColorDirection = CircularProgressBar.GradientDirection.TOP_TO_BOTTOM // Set background ProgressBar Color backgroundProgressBarColor = Color.GRAY // or with gradient backgroundProgressBarColorStart = Color.WHITE backgroundProgressBarColorEnd = Color.RED backgroundProgressBarColorDirection = CircularProgressBar.GradientDirection.TOP_TO_BOTTOM // Set Width progressBarWidth = 7f // in DP backgroundProgressBarWidth = 3f // in DP // Other roundBorder = true startAngle = 180f progressDirection = CircularProgressBar.ProgressDirection.TO_RIGHT } ``` ### Listener (in Kotlin) ```kotlin circularProgressBar.onProgressChangeListener = { progress -> // Do something } circularProgressBar.onIndeterminateModeChangeListener = { isEnable -> // Do something } ``` JAVA ----- ```java CircularProgressBar circularProgressBar = findViewById(R.id.yourCircularProgressbar); // Set Progress circularProgressBar.setProgress(65f); // or with animation circularProgressBar.setProgressWithAnimation(65f, 1000); // =1s // Set Progress Max circularProgressBar.setProgressMax(200f); // Set ProgressBar Color circularProgressBar.setProgressBarColor(Color.BLACK); // or with gradient circularProgressBar.setProgressBarColorStart(Color.GRAY); circularProgressBar.setProgressBarColorEnd(Color.RED); circularProgressBar.setProgressBarColorDirection(CircularProgressBar.GradientDirection.TOP_TO_BOTTOM); // Set background ProgressBar Color circularProgressBar.setBackgroundProgressBarColor(Color.GRAY); // or with gradient circularProgressBar.setBackgroundProgressBarColorStart(Color.WHITE); circularProgressBar.setBackgroundProgressBarColorEnd(Color.RED); circularProgressBar.setBackgroundProgressBarColorDirection(CircularProgressBar.GradientDirection.TOP_TO_BOTTOM); // Set Width circularProgressBar.setProgressBarWidth(7f); // in DP circularProgressBar.setBackgroundProgressBarWidth(3f); // in DP // Other circularProgressBar.setRoundBorder(true); circularProgressBar.setStartAngle(180f); circularProgressBar.setProgressDirection(CircularProgressBar.ProgressDirection.TO_RIGHT); ``` ### Listener (in Java) ```java circularProgressBar.setOnIndeterminateModeChangeListener(isEnable -> { // Do something return Unit.INSTANCE; }); circularProgressBar.setOnProgressChangeListener(progress -> { // Do something return Unit.INSTANCE; }); ``` SUPPORT ❤️ ----- Find this library useful? Support it by joining [**stargazers**](https://github.com/lopspower/CircularProgressBar/stargazers) for this repository ⭐️
And [**follow me**](https://github.com/lopspower?tab=followers) for my next creations 👍 LICENCE ----- CircularProgressBar by [Lopez Mikhael](http://mikhaellopez.com/) is licensed under a [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0). Based on a work at [Pedramrn/CircularProgressBar](https://github.com/Pedramrn/CircularProgressBar).