PieProgress

Additional

Language
Kotlin
Version
1.0.2 (Aug 14, 2019)
Created
Aug 7, 2019
Updated
Dec 30, 2019 (Retired)
Owner
Deepan (tizisdeepan)
Contributor
Deepan (tizisdeepan)
1
Activity
Badge
Generate
Download
Source code

PieProgress

What is Pie Progress?

Pie Progress is a type of circular progress view similar to the one that you can find in iOS devices while updating applications. It's a simple to use library where the progress gets updated by passing values to a single method.

Implementation

[1] In your app module gradle file

dependencies {
    implementation 'com.github.tizisdeepan:pieprogress:1.0.1'
}

[2] In your project level gradle file

allprojects {
    repositories {
        maven { url 'https://jitpack.io' }
    }
}

[3] Use PieProgress in your layout.xml

<com.deepan.pieprogress.PieProgress
            android:id="@+id/pieProgress"
            android:layout_width="100dp"
            android:layout_height="100dp"
            app:progressColor="@color/white"/>

[4] Set progress of PieProgress from your activity

    //setProgress(progress: Float)
    pieProgress.setProgress(progress)

Voila! You have implemented an awesome Pie Progress for your Android Project now!

Developed By