Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> Android學習指南之十七:Android對話框(Dialog)

Android學習指南之十七:Android對話框(Dialog)

編輯:關於android開發

       上一節所講內容為Android菜單的知識,本節來講另一種界面元素,對話框。

       一、對話框(Dialog)介紹

       Dialog也是Android中常用的用戶界面元素,他同Menu一樣也不是View的子類。讓我們看一下它的繼承關系:

Android dialog hierarchy chart

       這裡要留意一下他的直接子類AlertDialog和間接子類DatePickerDialog、ProgressDialog、TimePickerDialog,其中後三個我們在前面的章節已經講過,今天我們把重點放在AlertDialog上。

       二、AlertDialog的使用方法

       AlertDialog對話框是Dialog的子類,它提供一個圖標,一個標題,一個文本和3個按鈕。我們在Activity裡可以自行創建和顯示Dialog,也可以通過Activity的方法對其進行管理。我們可以通過下面的例子學習它的使用方法,同樣請注意代碼中的注釋。

       1、創建一個項目Lesson17_HelloAlertDialog,Activity的文件名叫MainHelloAlertDialog.java。

       2、res/layout/main.xml 的內容如下:

XML/HTML代碼
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <linearlayout android:layout_height="fill_parent" android:layout_width="fill_parent" android:orientation="vertical" xmlns:android="http://schemas.android.com/apk/res/android">  
  3.   
  4.         <textview android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/TextView01" android:text="對話框示例" android:textsize="20sp" android:layout_margintop="5dp">  
  5.         </textview>  
  6.   
  7.         <button android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/Button01" android:text="顯示對話框|ShowDialog()" android:textsize="20sp" android:layout_margintop="5dp">  
  8.         </button>  
  9.   
  10.         <button android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/Button02" android:text="關閉對話框|dismissDialog()" android:textsize="20sp" android:layout_margintop="5dp">  
  11.         </button>  
  12.   
  13.         <button android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/Button03" android:text="移除對話框|removeDialog()" android:textsize="20sp" android:layout_margintop="5dp">  
  14.         </button>  
  15. </linearlayout>  

       3、MainHelloAlertDialog.java的內容如下:

Java代碼
  1. package android.basic.lesson17;   
  2.   
  3. import android.app.Activity;   
  4. import android.app.AlertDialog;   
  5. import android.app.Dialog;   
  6. import android.content.DialogInterface;   
  7. import android.content.DialogInterface.OnClickListener;   
  8. import android.os.Bundle;   
  9. import android.view.View;   
  10. import android.widget.Button;   
  11. import android.widget.Toast;   
  12.   
  13. public class MainHelloAlertDialog extends Activity {   
  14.   
  15.     //定義一個對話框的ID   
  16.     int Edward_Movie_Dialog = 1;   
  17.   
  18.     // 對話框按鈕點擊事件監聽器   
  19.     OnClickListener ocl = new OnClickListener() {   
  20.          @Override  
  21.          public void onClick(DialogInterface dialog, int which) {   
  22.                switch (which) {   
  23.                case Dialog.BUTTON_NEGATIVE:   
  24.                     Toast.makeText(MainHelloAlertDialog.this, "我不喜歡他的電影。",   
  25.                                Toast.LENGTH_LONG).show();   
  26.                     break;   
  27.                case Dialog.BUTTON_NEUTRAL:   
  28.                     Toast.makeText(MainHelloAlertDialog.this, "說不上喜歡不喜歡。",   
  29.                                Toast.LENGTH_LONG).show();   
  30.                     break;   
  31.                case Dialog.BUTTON_POSITIVE:   
  32.                     Toast.makeText(MainHelloAlertDialog.this, "我很喜歡他的電影。",   
  33.                                Toast.LENGTH_LONG).show();   
  34.                break;   
  35.                }   
  36.          }   
  37.    };   
  38.   
  39.    @Override  
  40.    /** Called when the activity is first created. */  
  41.    public void onCreate(Bundle savedInstanceState) {   
  42.           super.onCreate(savedInstanceState);   
  43.           setContentView(R.layout.main);   
  44.   
  45.           // 定義對話框對象   
  46.           Dialog dialog = new AlertDialog.Builder(this)   
  47.             .setIcon(android.R.drawable.btn_star).setTitle("喜好調查")   
  48.             .setMessage("你喜歡看愛德華.諾頓Edward Norton的電影嗎?")   
  49.             .setNegativeButton("不喜歡", ocl).setNeutralButton("一般般", ocl)   
  50.             .setPositiveButton("很喜歡", ocl).create();   
  51.   
  52.           //顯示對話框   
  53.           dialog.show();   
  54.   
  55.           //定義 按鈕 UI組件   
  56.           Button b1 = (Button) findViewById(R.id.Button01);   
  57.           Button b2 = (Button) findViewById(R.id.Button02);   
  58.           Button b3 = (Button) findViewById(R.id.Button03);   
  59.   
  60.           //定義按鈕的單擊事件監聽器   
  61.           View.OnClickListener b_ocl= new View.OnClickListener() {   
  62.   
  63.              @Override  
  64.              public void onClick(View v) {   
  65.                  switch(v.getId()){   
  66.                  case R.id.Button01:   
  67.                       //顯示對話框   
  68.                       showDialog(Edward_Movie_Dialog);   
  69.                       break;   
  70.                  case R.id.Button02:   
  71.                       //關閉對話框 這個功能好傻X,根本點不到的按鈕   
  72.                       dismissDialog(Edward_Movie_Dialog);   
  73.                       break;   
  74.                  case R.id.Button03:   
  75.                       //移除對話框 這個功能好傻X,根本點不到的按鈕   
  76.                       removeDialog(Edward_Movie_Dialog);   
  77.                       break;   
  78.                  }   
  79.              }   
  80.          };   
  81.   
  82.          //綁定按鈕監聽器   
  83.          b1.setOnClickListener(b_ocl);   
  84.          b2.setOnClickListener(b_ocl);   
  85.          b3.setOnClickListener(b_ocl);   
  86.   
  87.    }   
  88.   
  89.    // 創建會話框時調用   
  90.    @Override  
  91.    public Dialog onCreateDialog(int id) {   
  92.           Toast.makeText(this, "onCreateDialog方法被調用", Toast.LENGTH_LONG).show();   
  93.   
  94.           return new AlertDialog.Builder(this)   
  95.             .setIcon(android.R.drawable.btn_star).setTitle("喜好調查")   
  96.             .setMessage("你喜歡看愛德華.諾頓Edward Norton的電影嗎?")   
  97.             .setNegativeButton("不喜歡", ocl).setNeutralButton("一般般", ocl)   
  98.             .setPositiveButton("很喜歡", ocl).create();   
  99.    }   
  100.   
  101.    // 每次顯示對話框之前會被調用   
  102.    @Override  
  103.    public void onPrepareDialog(int id, Dialog dialog){   
  104.            Toast.makeText(this, "onPrepareDialog方法被調用", Toast.LENGTH_LONG).show();   
  105.            super.onPrepareDialog(id, dialog);   
  106.    }   
  107.   
  108. }  

       4、運行結果如下:

Android對話框(AlertDialog)1

Android對話框(AlertDialog)2

       有興趣的同學可以考慮一下如何改進關閉和移除對話框按鈕。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved