對話方塊進度條的使用

來源:互聯網
上載者:User

在android中進度條和選項卡的使用一文中簡單介紹了進度條的使用,但是該文中只介紹了普通進度條(包括標題列進度條和水平進度條等)的使用,那麼在本文中將補充一種對話方塊式的進度條,它在實際中運用更為廣泛,代碼如下:

Activity:

 

package com.home;import android.app.Activity;import android.app.Dialog;import android.app.ProgressDialog;import android.os.Bundle;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;public class MainActivity extends Activity {private Button showProgressDialogBtn;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.main);showProgressDialogBtn = (Button) findViewById(R.id.main_btn_show);showProgressDialogBtn.setOnClickListener(new OnClickListener() {@Overridepublic void onClick(View arg0) {// 顯示對話方塊showDialog(0);}});}@Overrideprotected Dialog onCreateDialog(int id) {// 執行個體化進度條對話方塊ProgressDialog dialog = new ProgressDialog(this);dialog.setTitle("測試進度條對話方塊");dialog.setIndeterminate(true);dialog.setMessage("程式正在載入請稍後。。。");dialog.setCancelable(true);return dialog;}}
<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" >    <Button        android:id="@+id/main_btn_show"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="顯示進度條對話方塊" /></LinearLayout>

附片效果:


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.