Android circle progressbar github
CircularProgressbar in Android
CircularProgressbar project let create circular progressbar in android in simplest way.
To make a circular Progressbar add CircularProgressbar in your layout XML and add CircularProgressbar library in your project or you can also grab it through Gradle:
For CircularImageview, here is library created by me :- https://github.com/sparrow007/CircularImageview
You may use the following properties in your XML to change your CircularProgressbar.
To add touchEvent into your ciruclar Progressbar you have to add property app:cpb_touchEnabled=»true»
/* circular progressbar xml */
- app:cpb_roundedCorner (boolean) -> default false
- app:cpb_foregroundProgressWidth (Integer) -> default 10
- app:cpb_backgroundProgressWidth (Integer) -> default 10
- app:cpb_backgroundProgressColor (Color) -> default Color.GRAY
- app:cpb_foregroundProgressColor (Color) -> default Color.BLACK
- app:cpb_progress (Float) -> default 0
- app:cpb_touchEnabled (boolean) -> default false
- app:cpb_clockwise (boolean) -> default false
- There is progress listener interface you can implement as par your requierments and there are also getter for all the above methods.
How to contribute?
- Fork the repository
- Do the desired changes (add/delete/modify)
- Make a pull request
When to contribute?
Copyright 2017 Ankit kumar
Thanks to stackoverflow and Raggav
About
CircularProgressbar project let you create circular progressbar in android
Источник
Android circle progressbar github
A small Android library allowing you to have a smooth and customizable circular ProgressBar like whatsapp and Tez app, it can be use while uploding or downloading file.
I decided to do this because I was really tired to find progressbar like whatsapp and gradient color progressbar and also you can contribute more color style, or new idea to me.
I took reference or take some code from CircleProgress and change it as i need. also add code for set vector image as background and gradient colors.
Add it in your root build.gradle at the end of repositories:
Add the dependency:
You can either simply use the AdCircleProgress widge from this library on a regular ProgressBar .
Simply replace your ProgressBar with AdCircleProgress , and remember to apply corresponding style and attribute for correct behavior.
For example, to create a first AdCircleProgress like whatsapp:
Second AdCircleProgress in which you can change adpgb_finished_stroke_width like below code:
Third AdCircleProgress in which you can change custom:adpgb_inner_drawable means you can change image or vector image in inner circle like below code:
Fourth AdCircleProgress in which you can change custom:adpgb_show_text=»true» means if you want to show progress in percentage like below code:
Fifth AdCircleProgress in which you can add gradient color for progressbar app:adpgb_gradient_color_one=»@color/colorOne» app:adpgb_gradient_color_two=»@color/colorTwo» like below code:
Do not forget to add xmlns:custom custom attr in your root layout :
About
A small Android library allowing you to have a smooth and customizable circular ProgressBar.
Источник
Android circle progressbar github
A circular android ProgressBar library which extends View, and the usage same as ProgressBar, It has solid,line and solid_line three styles. Besides, progress value can be freely customized.
Latest commit
Git stats
Files
Failed to load latest commit information.
README.md
The CircleProgressBar extends View, It has both solid and line two styles. Besides, progress value can be freely customized. If you are interested in cool loading animations, you can see LoadingDrawable.
There are several attributes you can set:
The progress style:
The progress text:
The progress circle:
- width
- start degree
- start color
- end color
- background color
- draw background outside progress
The progress shader
- linear (default,but if start_color and end_color equivalence, will not set the shader)
- radial
- sweep
The progress blur (blur radius must larger than zero)
The progress stroke cap
The line style:
for example : In the xml
- extends View, do not care to save the current state of progress, CircleProgressBar has written in to help us in onSaveInstanceState () and onRestoreInstanceState (Parcelable state).
- highly customizable, you can set the two styles of progress bar, you can set the color of the bars, you can set the color and size of the progress of the text, due to the progress of the code for formatting text uses String.format (), so progress text can be customized as needed
- Code elegant, very comprehensive code comments, neat format, you can set the relevant properties directly in xml.
I like Android, like open source, and like doing something interesting. 🙂 If you like CircleProgressBar or use it, you can star this repo and send me some feedback. Thanks! _ QQ Group: 342748245
About
A circular android ProgressBar library which extends View, and the usage same as ProgressBar, It has solid,line and solid_line three styles. Besides, progress value can be freely customized.
Источник
Android circle progressbar github
This CircularProgressView is a (surprisingly) circular progress bar Android View that is designed to imitate the Material versions of ProgressBar. These versions can be seen on this page of the Material design spec under Circular indicators.
To use CircularProgressView you must add it as a dependency in your Gradle build:
Then add the view to your layout:
That’s all you need! If you don’t want the CircularProgressView to automatically start animating, omit the app:cpv_animAutostart option and start it manually yourself:
Name | Type | Default | Description |
---|---|---|---|
cpv_progress | float | 0 | The current progress of the progress bar. |
cpv_maxProgress | float | 100 | The maximum progress of the progress bar; what’s considered as 100% of the bar. |
cpv_thickness | dimension | 4px | The thickness of the progress bar. |
cpv_color | color | Theme’s accent color. If not available, Material Blue 500 (#2196F3) | The color of the progress bar. |
cpv_indeterminate | boolean | false | Whether this progress bar is indeterminate or not. If indeterminate, the progress set on this view will not have any effect. |
cpv_animDuration | integer | 4000 | The duration of the indeterminate progress bar animation in milliseconds. It is the duration of all «steps» of the indeterminate animation. (Indeterminate only) |
cpv_animSwoopDuration | integer | 5000 | The duration of the initial swoop of the determinate animation. (Determinate only) |
cpv_animSyncDuration | integer | 500 | The duration of the determinate progress update animation. When you use setUpdate(int) , this is how long it takes for the view to finish animating to that progress. (Determinate only) |
cpv_animSteps | integer | 3 | The number of «steps» in the indeterminate animation (how many times it does the loopy thing before returning to its original position). It is recommended to use an odd number, as even numbers of steps look the same after half the number of steps. |
cpv_animAutostart | boolean | false | Whether this progress bar should automatically start animating once it is initialized. |
cpv_startAngle | float | 0 | The starting angle for progress bar. (Determinate only) |
Name | Description |
---|---|
isIndeterminate() | Returns true if the progress bar is indeterminate, false if determinate. |
setIndeterminate(boolean) | Set whether this progress bar is indeterminate or not. Will reset the animation if the value changes |
getThickness() | Gets the thickness of the progress bar. |
setThickness(int) | Sets thickness of the progress bar. |
getColor() | Gets the color of the progress bar. |
setColor(int) | Sets the color of the progress bar. |
getMaxProgress() | Gets the maximum progress of the progress bar. |
setMaxProgress(float) | Sets the maximum progress of the progress bar. |
getProgress() | Gets the current progress of the progress bar. |
setProgress(float) | Sets the current progress of the progress bar. (Will linearly animate the update.) |
startAnimation() | Starts the animation of the progress bar. (Alias of resetAnimation().) |
resetAnimation() | Resets the animation of the progress bar. |
stopAnimation() | Stops the animation of the progress bar. |
addListener(CircularProgressViewListener) | Registers a CircularProgressViewListener with this view. |
removeListener(CircularProgressViewListener) | Unregisters a CircularProgressViewListener with this view. |
A CircularProgressViewListener class is available for listening to some events (as well as a CircularProgressViewAdapter ).
Event | Description |
---|---|
onProgressUpdate(float) | Called when setProgress is called. (Determinate only) |
onProgressUpdateEnd(float) | Called when this view finishes animating to the updated progress. (Determinate only) |
onAnimationReset() | Called when resetAnimation() is called. |
onModeChange(boolean) | Called when you switch between indeterminate and determinate modes. |
CircularProgressView flickers when phone is in battery saving mode
This happens because battery saving mode automatically ends all Animators, but the ones in CPV run in an endless loop. The best way to work around this right now is to use the native ProgressBar for API >21, since that is when the battery saver mode was introduced. See this issue comment on how to accomplish this.
Источник
Android circle progressbar github
Option 1. As a Gradle dependency (RECOMMENDED)
- Make sure you have jcenter() as a repository in your project build.gradle
- Add the following dependencies to your app build.gradle :
Option 2. Clone Github repository
- Use git to download a copy of the whole repository to your computer (this includes the folder of the library and an example project)
- Import the library folder ( CircularProgressbarLib ) into Android Studio as a dependency to your project:
- Add your library as a dependency
You can use the following attributes in your XML declaration to tweak the ProgressBar.
- app:backgroundColor : Background color
- type: Color
- default: Color.DKGRAY
- app:backgroundThickness : Background thickness
- type: dimension
- default: 10
- app:barThickness : Bar thickness
- type: dimension
- default: 8
- app:startAngle : Angle at witch the progress is 0 (-90 => 12 o’clock)
- type: integer
- default: -90
- app:maxValue : The maximum value of the progressbar range
- type: float
- default: 1
- app:minValue : The minimum value of the progressbar range
- type: float
- default: 0
- app:barCapStyle Bar cap style. See: Android Paint.Cap
- type: enum:
- default: round
Copyright 2016 Jose Antonio Maestre Celdran
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
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.
Источник