Android进度条控件progressbar使用方法详解

  <?xml version="1.0" encoding="utf-8"?>

  

  android:layout_width="match_parent"

  android:layout_height="match_parent"

  android:orientation="vertical" >

  

  

  

  style="?android:attr/progressBarStyleSmall"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  />

  

  style="?android:attr/progressBarStyleLarge"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  />

  

  style="?android:attr/progressBarStyleLargeInverse"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  />

  

  style="?android:attr/progressBarStyleHorizontal"

  android:layout_width="match_parent"

  android:layout_height="wrap_content"

  android:progress="30"

  />

  

  android:id="@+id/pb_progressBar1"

  style="?android:attr/progressBarStyleHorizontal"

  android:layout_width="match_parent"

  android:layout_height="wrap_content"

  android:progress="50"

  android:secondaryProgress="80"

  android:layout_marginTop="30dp"

  />

  

  android:layout_width="match_parent"

  android:layout_height="wrap_content"

  android:orientation="horizontal"

  >

  

  android:id="@+id/btn_addProgress"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="增加进度"

  android:layout_weight="1"

  />

  

  android:id="@+id/btn_minusProgress"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="减少进度"

  android:layout_weight="1"

  />