亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Android中使用ProgressBar實現一個進度條功能

發布時間:2021-04-06 18:08:12 來源:億速云 閱讀:132 作者:Leah 欄目:移動開發

這篇文章將為大家詳細講解有關怎么在Android中使用ProgressBar實現一個進度條功能,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

具體方法如下:

public class MainActivity extends Activity {
  //記錄ProgressBar的完成進度
  private int sum1=0,sum2 = 0 ;
  ProgressBar bar1,bar2;
  //創建一個負責更新進度的Handler
  Handler mHandler = new Handler(){
    @Override
    public void handleMessage(Message msg) {
      //表明消息是本程序發送的
      if (msg.what == 0x111){
        bar1.setProgress(sum1);
        bar2.setProgress(sum2);
      }
    }
  };
  //模擬耗時
  Thread thread = new Thread(){
    @Override
    public void run() {
      while (sum2 < 100){
        //bar1獲取完成工作的百分比
        if (sum1 > 100){
          sum1 = 100;
          if (sum2<100){
            sum2 += (int) (Math.random()*25);
          }else {
            sum2 = 100;
            thread.stop();
          }
          sum1=0;
        }else {
          sum1 = sum1 + (int) (Math.random()*25);
        }
        try{
          Thread.sleep(1000);
        }catch (InterruptedException e){
          e.printStackTrace();
        }
        //更新ProgressBar
        mHandler.sendEmptyMessage(0x111);
      }
    }
  };
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    bar1 = (ProgressBar) findViewById(R.id.bar);
    bar2 = (ProgressBar) findViewById(R.id.bar2);
    thread.start();
  }
}

最后在給出布局文件:

<?xml version="1.0" encoding="utf-8" ?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  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.support.v7.widget.Toolbar
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:contentInsetStart="0dp"
    android:background="#9FB6CD">
    <RelativeLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content">
      <ProgressBar
        android:id="@+id/toolbar_progress"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentEnd="true"
        android:layout_alignParentRight="true" />
    </RelativeLayout>
  </android.support.v7.widget.Toolbar>
  <LinearLayout
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <!--定義一個大環型進度條-->
    <ProgressBar
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      />
    <!--定義一個中等大小環形進度條-->
    <ProgressBar
      android:layout_width="wrap_content"
      android:layout_height="wrap_content" />
    <!--定義一個小進度條-->
    <ProgressBar
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      />
  </LinearLayout>
  <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="任務完成的進度"/>
  <!--定義一個大水平進度條-->
  <ProgressBar
    android:id="@+id/bar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:max="100"
    />
  <!--頂一個水平進度條,并改變軌道外觀-->
  <ProgressBar
    android:id="@+id/bar2"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:max="100"
    android:progressDrawable="@drawable/my_bar"
    />
</LinearLayout>

關于怎么在Android中使用ProgressBar實現一個進度條功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

安宁市| 毕节市| 龙井市| 彰武县| 新化县| 建始县| 项城市| 宜都市| 溧水县| 和政县| 城固县| 鄢陵县| 集贤县| 永清县| 济源市| 金川县| 昆山市| 英山县| 策勒县| 淮阳县| 祥云县| 大兴区| 沂源县| 民权县| 那坡县| 青海省| 图木舒克市| 平顺县| 元氏县| 顺义区| 仪陇县| 大邑县| 英德市| 金乡县| 济源市| 铁力市| 深泽县| 贡觉县| 长葛市| 长武县| 天门市|