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.
dependencies {
implementation 'com.github.tizisdeepan:pieprogress:1.0.1'
}
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
<com.deepan.pieprogress.PieProgress
android:id="@+id/pieProgress"
android:layout_width="100dp"
android:layout_height="100dp"
app:progressColor="@color/white"/>
//setProgress(progress: Float)
pieProgress.setProgress(progress)
Voila! You have implemented an awesome Pie Progress for your Android Project now!
- Deepan Elango - [email protected]