Horizontal Progress Bar - How to add label inside indicator?

358 views Asked by At

I'm using the material library's LinearProgressIndicator for a horizontal progress bar.

How would I add a label inside the indicator of the progressbar indicator?

enter image description here

<com.google.android.material.progressindicator.LinearProgressIndicator
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:max="100"
        android:progress="65"
        app:trackColor="@color/background_color"
        app:trackThickness="16dp"
        app:indicatorColor="@color/black"/>
1

There are 1 answers

0
C.F.G On

Take a look at the ProgressView library. I think it is what you are looking for.

enter image description here