John
John

Reputation: 8946

Horizontal progress bar with text at progress points

How can i create a horizontal progress bar with indication text at the progress point. I want to create a progress bar like this.

enter image description here

Upvotes: 0

Views: 1884

Answers (1)

Amit Vaghela
Amit Vaghela

Reputation: 22965

you can use NumberProgressBar lib

enter image description here

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

Related Questions