Android学习之路六:ProgressBar

  ProgressBar是进度条,Android系统自带的进度条有两种,分别是圆形进度条和水平进度条。

  XML重要属性:

    android:progressBarStyle:默认进度条样式;

    android:progressBarStyleHorizontal:水平样式。

  案例一(圆形进度条):

<ProgressBar android:id="@+id/largeProgressBar"
        style="?android:attr/progressBarStyleLarge"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />

  案例二(水平进度条):

<ProgressBar android:id="@+id/horizontalProgressBar"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />
原文地址:https://www.cnblogs.com/thinksasa/p/2918905.html