Android实现进度条(ProgressBar)的功能与用法

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

  

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

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

  android:layout_width="match_parent"

  android:orientation="vertical"

  android:layout_height="match_parent"

  tools:context=".Main5Activity">

  

  android:layout_width="match_parent"

  android:layout_height="wrap_content"

  android:orientation="horizontal"/>

  

  

  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="wrap_content"

  android:layout_height="wrap_content"

  android:text="任务完成进度条"

  android:textSize="24dp"/>

  

  

  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/c4"

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