Reputation: 8946
How can i create a horizontal progress bar with indication text at the progress point. I want to create a progress bar like this.
Upvotes: 0
Views: 1884
Reputation: 22965
you can use NumberProgressBar lib
Gradle
dependencies {
compile 'com.daimajia.numberprogressbar:library:1.4@aar'
}
Use it in your own code:
<com.daimajia.numberprogressbar.NumberProgressBar
android:id="@+id/number_progress_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
There are some others too
Upvotes: 3