Android开发使用ProgressBar实现进度条功能示例

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

  

  xmlns:tools="http://schemas.android.com/tools"

  android:layout_width="match_parent"

  android:layout_height="match_parent"

  xmlns:app="http://schemas.android.com/apk/res-auto"

  android:orientation="vertical">

  

  android:layout_width="match_parent"

  android:layout_height="wrap_content"

  app:contentInsetStart="0dp"

  android:background="#9FB6CD">

  

  android:layout_width="match_parent"

  android:layout_height="wrap_content">

  

  android:id="@+id/toolbar_progress"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:layout_alignParentEnd="true"

  android:layout_alignParentRight="true" />

  

  

  

  android:orientation="horizontal"

  android:layout_width="match_parent"

  android:layout_height="wrap_content">

  

  

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  style="@android:style/Widget.ProgressBar.Large"/>

  

  

  android:layout_width="wrap_content"

  android:layout_height="wrap_content" />

  

  

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  style="@android:style/Widget.ProgressBar.Small"/>

  

  

  android:layout_width="match_parent"

  android:layout_height="wrap_content"

  android:text="任务完成的进度"/>

  

  

  android:id="@+id/bar"

  android:layout_width="match_parent"

  android:layout_height="wrap_content"

  android:max="100"

  style="@android:style/Widget.ProgressBar.Horizontal"/>

  

  

  android:id="@+id/bar2"

  android:layout_width="match_parent"

  android:layout_height="wrap_content"

  android:max="100"

  android:progressDrawable="@drawable/my_bar"

  style="@android:style/Widget.ProgressBar.Horizontal"/>