水平进度栏与文本在进度点

时间:2016-09-27 10:31:11

标签: android xml android-layout android-studio android-progressbar

如何在进度点使用指示文字创建水平进度条。我想创建一个像这样的进度条。

enter image description here

1 个答案:

答案 0 :(得分:3)

您可以使用NumberProgressBar lib

enter image description here

摇篮

dependencies {
   compile 'com.daimajia.numberprogressbar:library:1.4@aar'
}

在您自己的代码中使用它:

<com.daimajia.numberprogressbar.NumberProgressBar
    android:id="@+id/number_progress_bar"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
/>

some others too