• Stars
    star
    285
  • Rank 144,198 (Top 3 %)
  • Language
    Kotlin
  • License
    Apache License 2.0
  • Created about 7 years ago
  • Updated about 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A fancy CircularProgressView

CircularProgressView

Android Arsenal Preview-Appetize.io

A fancy CircularProgressView.

Installation

CircularProgressView is distributed through Maven Central and Jitpack.

implementation 'com.github.guilhe:circular-progress-view:${LATEST_VERSION}'

Maven Central

Usage

Check out the sample module where you can find a few examples of how to create it by xml or java.

Attributes accepted in xml:

    <attr name="max" format="integer" />
    <attr name="shadow" format="boolean" />
    <attr name="progressThumb" format="boolean" />
    <attr name="progressThumbSize" format="dimension" />
    <attr name="progressThumbSizeRate" format="float" />
    <attr name="progressThumbSizeMaxRate" format="float" />
    <attr name="startingAngle" format="integer" />
    <attr name="progress" format="integer" />
    <attr name="progressBarThickness" format="dimension" />
    <attr name="progressBarColor" format="color" />
    <attr name="progressBarColorArray" format="reference" />
    <attr name="progressBarColorArrayPositions" format="reference" />
    <attr name="duplicateFirstColorInArray" format="boolean" />
    <attr name="progressBarRounded" format="boolean" />
    <attr name="progressBackgroundColor" format="color" />
    <attr name="progressBackgroundAlphaEnabled" format="boolean" />
    <attr name="reverse" format="boolean" />
    <attr format="enum" name="progressThumbScaleType">
        <enum name="auto" value="0"/>
        <enum name="point" value="1"/>
        <enum name="rate" value="2"/>
    </attr>

Example:

<com.github.guilhe.views.CircularProgressView
    android:layout_width="100dp"
    android:layout_height="100dp"
    app:progress="60"
    app:progressBarThickness="10dp"
    app:progressBarColor="@android:color/holo_purple"/>

BindingAdapters

You can take advantage of Binding Adapters (from Data Binding) to create some helper attributes, example:

@BindingAdapter("progressAnimated")
fun setProgressAnimated(view: CircularProgressView, progress: Int) {
    view.setProgress(progress, true);
}
<com.github.guilhe.views.CircularProgressView
    ...
    app:progressAnimated="@{viewModel.progress}"/>

Progress with gradient

For the given array of colors:

<array name="rainbow">
    <item>#FFF60000</item>
    <item>#FFFF8C00</item>
    <item>#FFFFEE00</item>
    <item>#FF4DE94C</item>
    <item>#FF3783FF</item>
    <item>#FF4815AA</item>
</array>

The default result will be (left):

To achieve the result on the right side you have two options: either copy the first color and add it as last, or use the helper attribute/method that does that for you:

<attr name="duplicateFirstColorInArray" format="boolean"/>
fun setProgressColors(@NonNull @ColorInt int[] colors, @Nullable float[] positions, boolean duplicateFirst)

Finally, you may also use the attribute progressBarColorArrayPositions to pass a float[] positions:

<array name="rainbow_positions">
    <item type="dimen" format="float">.44</item>
    ...
</array>

note: when using the helper function and positions[], you'll have to add an extra position for the last one being copied.

There are many methods to help you customize this View by code. For more details checkout the sample app, javadocs or the code itself.

"Multiple Progress" for PieChart

fun setProgress(@NonNull List<Float> progressList, @NonNull List<Integer> progressColorList)

This mode can be used to display a simple pie chart. It will disable the progress thumb, the background color and the progress will not be round.

Sample

Sample

Animation last update on April, 2019

Get it on Google Play

Dependencies

Bugs and Feedback

For bugs, questions and discussions please use the Github Issues.

LICENSE

Copyright (c) 2017-present, GuilhE.

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.

More Repositories

1

KeyboardStateEvents

LiveData notification when keyboard opens or closes, plus some handy extension functions
Kotlin
149
star
2

KitchenTimer

A kitchen timer implemented with Jetpack Compose
Kotlin
146
star
3

Expressus

Kotlin Multiplatform Coffee Machine
Kotlin
109
star
4

KMP-ComposeUIViewController

KSP library and Gradle Plugin for generating ComposeUIViewController and UIViewControllerRepresentable files when using Compose Multiplatform for iOS
Kotlin
66
star
5

SeekbarRangedView

A SeekBarView restrained by a minimum and maximum value.
Kotlin
65
star
6

JsonBroadcaster

Update the UI state of your Android and iOS apps at runtime.
Kotlin
48
star
7

WhosNext

Kotlin Multiplatform Timer
Kotlin
47
star
8

QuantityPickerView

A View capable of increasing or decreasing a unit value with a toggle animation
Kotlin
45
star
9

RecyclerPickerDialog

A FragmentDialog implemented with RecyclerView that can accept Single or Multiple selections
Kotlin
38
star
10

PlaceHolderRecyclerView

A RecyclerView that can switch between items and placeholders
Kotlin
35
star
11

ResourcesProvider-ktx

Helper class to provide resources - ContextCompat, ResourcesCompat, AnimationUtils, Context.resources - all in one place! 🤩🥳
Kotlin
15
star
12

OneHotMinute-Compose

Android Dev Challenge: Week 2 - Countdown timer
Kotlin
13
star
13

Zoo-Compose

Android Dev Challenge: Week1 - Animal adoption
Kotlin
11
star
14

SharedPrefs-ktx

Save and load objects from SharedPreferences in a faster and simpler way with Kotlin Extensions 🎉
Kotlin
9
star
15

Kairos

Android Dev Challenge Finale: Weather app
Kotlin
8
star
16

AndroidStyling-LintRules

A set of lint rules to check for common mistakes when styling and theming on Android
Kotlin
6
star
17

DesingSpeedRun-Compose

Android Dev Challenge: Week 3 - Speed round
Kotlin
4
star
18

SharedPrefsUtils

Save and load objects from SharedPreferences in a faster and simpler way
Java
3
star