A Circular Progress Bar with concentric circles.
- Include Maven in Project Level build.gradle file
repositories {
...
maven { url 'https://jitpack.io' }
}
- Add the library dependency in App Level build.gradle file
implementation "com.github.rajBopche:ConcentricProgressBar:$latest_version"
<com.example.concentricprogressbar.ConcentricProgressBar
android:id="@+id/progress_bar_concentric"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:inner_progress_color="@color/color_dark_orange"
app:outer_progress_color="@color/color_bright_red"
/>
- The min sdk for library is currently set to 19.
- The number of progress circles is restricited to two circles for now, but can be progressively modified in future releases.