在android中绘制多个'静态进度条'

时间:2014-08-13 16:25:04

标签: android

如何在android中绘制多个'静态进度条'?我想实现与下图中完全相同的事情

static progress bar

为“静态进度条”设置每个画布会非常麻烦,不是吗?有没有更快更清洁的方法来实现像图像一样的东西?

2 个答案:

答案 0 :(得分:1)

以下是有关如何创建自定义水平进度条的有用教程。 Take a look

答案 1 :(得分:0)

尝试以下代码:

<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <ProgressBar
        style="@android:style/Widget.ProgressBar.Horizontal"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:progress="50"
        android:textAlignment="center"
        android:id="@+id/progressBar" />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="50 % (optional)"
        android:textSize="20sp"
        android:textColor="@android:color/white"
        android:layout_gravity="center"/>

</FrameLayout>