安卓-進度處理對話方塊(ProgressDialog)

來源:互聯網
上載者:User

標籤:android   progressdialog   

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"><Button    android:id="@+id/btn"    android:layout_height="wrap_content"    android:layout_width="wrap_content"    android:text="尋找網路連接"/>    </LinearLayout>


.java代碼如下:

package org.lxh.demo;import android.app.Activity;import android.app.AlertDialog;import android.app.Dialog;import android.app.ProgressDialog;import android.content.DialogInterface;import android.os.Bundle;import android.view.LayoutInflater;import android.view.View;import android.view.View.OnClickListener;import android.widget.AdapterView;import android.widget.AdapterView.OnItemClickListener;import android.widget.AdapterView.OnItemSelectedListener;import android.widget.Button;import android.widget.Spinner;import android.widget.TextView;public class Hello extends Activity {private Button btn = null;private static final int MAX_PROGRESS=100;@Overridepublic void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState); // 生命週期方法super.setContentView(R.layout.main); // 設定要使用的布局管理器this.btn = (Button) super.findViewById(R.id.btn);this.btn.setOnClickListener(new OnClickListenerImpl());}private class OnClickListenerImpl implements OnClickListener {public void onClick(View v) {final ProgressDialog proDialog=new ProgressDialog(Hello.this);proDialog.setTitle("搜尋網路");proDialog.setMessage("請耐心等待...");proDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);proDialog.setMax(MAX_PROGRESS);proDialog.setProgress(30);proDialog.setButton("幕後處理", new DialogInterface.OnClickListener() {public void onClick(DialogInterface arg0, int arg1) {proDialog.dismiss();}});proDialog.onStart();new Thread(){public void run(){for(int x=0;x<MAX_PROGRESS;x++){try {Thread.sleep(500);} catch (InterruptedException e) {e.printStackTrace();}proDialog.incrementProgressBy(1);}proDialog.dismiss();}}.start();proDialog.show();}}}


效果運行如下:



安卓-進度處理對話方塊(ProgressDialog)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.