A customisable circular progress view for android.
- Depends on Kotlin(1.2.70) and Android Support AppCompat(28.0.0)
- minSdkVersion(14) and targetSdkVersion(28)
- View state is retained on configuration change
| Attribute | Type | Description |
|---|---|---|
| app:totalValue | Integer | Total progress. By default it is 100. |
| app:totalColor | Color | Total progress color |
| app:totalWidth | Dimension | Width of total progress |
| app:progressValue | Integer | Current progress. It should be less than or equal to "total". It will be set to "total" if it is set to more than "total" |
| app:progressColor | Color | Current progress color |
| app:progressWidth | Dimension | Width of current progress |
| app:progressRoundCap | Boolean | Enable or disable rounded cap of current progress. Disabled by default. |
| app:progressTextEnabled | Boolean | Enable or disable the progress text. Disabled by default. |
| app:progressTextType | Enum (progress or percent) | "progress" will show the value of current progress and "percent" will show percent of current progress out of total. By default it is "progress" |
| app:progressTextSize | Dimension | Text size of progress text |
| app:progressTextColor | Color | Color of progress text |
| app:progressInterpolator | Reference | Interpolator reference. Default is @android:anim/linear_interpolator |
| app:fillColor | Color | Fill color begins from center of the view to the inner radius of the total progress |
| app:startAngle | Float | Start angle in degrees for current progress. By default it is 270 so that it starts from the top. |
| app:animate | Boolean | Enable or disable animation when current progress changes. Disabled by default. |
| app:animateDuration | Integer | Current progress change animate duration in milliseconds. 300 ms by default. |
<com.vaibhavlakhera.circularprogressview.CircularProgressView android:id="@+id/progressView" android:layout_width="164dp" android:layout_height="164dp" app:animate="true" app:animateDuration="600" app:fillColor="@color/colorPrimary" app:progressValue="10" app:progressColor="#FFF" app:progressInterpolator="@android:anim/accelerate_decelerate_interpolator" app:progressRoundCap="true" app:progressTextColor="#FFF" app:progressTextEnabled="true" app:progressTextSize="32sp" app:progressTextType="progress" app:progressWidth="12dp" app:startAngle="270" app:totalValue="100" app:totalColor="@color/colorPrimaryDark" app:totalWidth="20dp" /> Step 1. Add the JitPack repository to your root build.gradle at the end of repositories
allprojects { repositories { ... maven { url 'https://jitpack.io' } } }Step 2. Add the dependency
dependencies { implementation "com.github.VaibhavLakhera:Circular-Progress-View:$latestVersion" }Copyright (c) 2018 Vaibhav Lakhera Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 