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

溫馨提示×

溫馨提示×

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

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

Android開發中ProgressDialog簡單用法示例

發布時間:2020-09-23 16:42:59 來源:腳本之家 閱讀:175 作者:guochongcan 欄目:移動開發

本文實例講述了Android開發中ProgressDialog簡單用法。分享給大家供大家參考,具體如下:

網上一般對進度條的示例都是如何顯示,沒有在任務結束如何關閉的文章,參考其他文章經過試驗之后把整套進度條顯示的簡單示例如下:

建立android工程等工作都略去,Google一下就可以了。

下面來介紹主要的Activity

ProgressBarDemo.java

package com.lveyo.android.demo.progressbar;
import android.app.Activity;
import android.app.ProgressDialog;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class ProgressBarDemo extends Activity {
  private TextView statusTextView;
  private Button beginBtn;
  private ProgressDialog progressDialog;
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    statusTextView = (TextView)findViewById(R.id.status);
    beginBtn = (Button)findViewById(R.id.beginBtn);
    setListener();
  }
  /**
   * 用Handler來更新UI
   */
  private Handler handler = new Handler(){
    @Override
    public void handleMessage(Message msg) {
      //關閉ProgressDialog
      progressDialog.dismiss();
      //更新UI
      statusTextView.setText("Completed!");
    }};
  /**
   * 點擊按鈕事件listener
   */
  private void setListener(){
    beginBtn.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        //顯示ProgressDialog
        progressDialog = ProgressDialog.show(ProgressBarDemo.this, "Loading...", "Please wait...", true, false);
        //新建線程
        new Thread(){
          @Override
          public void run() {
            //需要花時間計算的方法
            Calculation.calculate(4);
            //向handler發消息
            handler.sendEmptyMessage(0);
          }}.start();
      }
    });
  }
}

package com.lveyo.android.demo.progressbar;
import android.app.Activity;
import android.app.ProgressDialog;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class ProgressBarDemo extends Activity {
  private TextView statusTextView;
  private Button beginBtn;
  private ProgressDialog progressDialog;
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    statusTextView = (TextView)findViewById(R.id.status);
    beginBtn = (Button)findViewById(R.id.beginBtn);
    setListener();
  }
  /**
   * 用Handler來更新UI
   */
  private Handler handler = new Handler(){
    @Override
    public void handleMessage(Message msg) {
      //關閉ProgressDialog
      progressDialog.dismiss();
      //更新UI
      statusTextView.setText("Completed!");
    }};
  /**
   * 點擊按鈕事件listener
   */
  private void setListener(){
    beginBtn.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        //顯示ProgressDialog
        progressDialog = ProgressDialog.show(ProgressBarDemo.this, "Loading...", "Please wait...", true, false);
        //新建線程
        new Thread(){
          @Override
          public void run() {
            //需要花時間計算的方法
            Calculation.calculate(4);
            //向handler發消息
            handler.sendEmptyMessage(0);
          }}.start();
      }
    });
  }
}

Calculation.java

package com.lveyo.android.demo.progressbar;
/**
 * 示意方法
 * @author lveyo
 *
 */
public class Calculation {
  public static void calculate(int sleepSeconds){
    try {
      Thread.sleep(sleepSeconds * 1000);
    } catch (Exception e) {
      // TODO: handle exception
    }
  }
}

package com.lveyo.android.demo.progressbar;
/**
 * 示意方法
 * @author lveyo
 *
 */
public class Calculation {
  public static void calculate(int sleepSeconds){
    try {
      Thread.sleep(sleepSeconds * 1000);
    } catch (Exception e) {
      // TODO: handle exception
    }
  }
}

main.xml文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  >
<TextView android:id="@+id/status"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:text="@string/hello"
  />
<Button android:id="@+id/beginBtn"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:text="begin"
  />
</LinearLayout>

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  >
<TextView android:id="@+id/status"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:text="@string/hello"
  />
<Button android:id="@+id/beginBtn"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:text="begin"
  />
</LinearLayout>

在android中,通常我們無法在單獨的線程中更新UI,而要在主線程中,這也就是為什么我們要使用 Handler了,當handler收到消息中,它會把它放入到隊列中等待執行,通常來說這會很快被執行。

更多關于Android相關內容感興趣的讀者可查看本站專題:《Android開發入門與進階教程》、《Android調試技巧與常見問題解決方法匯總》、《Android基本組件用法總結》、《Android視圖View技巧總結》、《Android布局layout技巧總結》及《Android控件用法總結》

希望本文所述對大家Android程序設計有所幫助。

向AI問一下細節

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

AI

封开县| 尼勒克县| 大化| 三穗县| 周口市| 伊吾县| 南阳市| 武邑县| 浦北县| 固原市| 澜沧| 德惠市| 甘洛县| 页游| 馆陶县| 龙南县| 海阳市| 汤阴县| 海安县| 罗源县| 灯塔市| 古田县| 顺平县| 河西区| 社会| 隆昌县| 德化县| 呼伦贝尔市| 临夏县| 呈贡县| 德清县| 堆龙德庆县| 共和县| 甘南县| 天峨县| 阜康市| 侯马市| 将乐县| 宁乡县| 咸阳市| 榆林市|