Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android AlertDialog對話框詳解及實例

Android AlertDialog對話框詳解及實例

編輯:關於Android編程

Android  AlertDialog

關系圖如下:

Android主要提供四種對話框:

1:AlertDialog:功能最豐富,實際應用最廣的對話框。
2:ProgressDialog:進度條對話框
3:DatePickerDialog:日期選擇器對話框
4:TimePickerDialog:時間選擇器對話框

創建一個對話框的步驟:

AlertDialog.Builder builder = new AlertDialog.Builder(this)
        // 1:設置對話框標題
        .setTitle("自定義列表項對話框")
            // 2:設置圖標
        .setIcon(R.drawable.tools)
            // 3:設置內容
        .setMessage("對話框的測試內容\n第二行內容");
    // 為AlertDialog.Builder添加“確定”按鈕
    setPositiveButton(builder);
    // 為AlertDialog.Builder添加“取消”按鈕
    setNegativeButton(builder)
        .create()
        .show();

代碼區:

main.xml代碼區:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:gravity="center_horizontal">
<!-- 顯示一個普通的文本編輯框組件 -->
<EditText 
  android:id="@+id/show"
  android:layout_width="match_parent" 
  android:layout_height="wrap_content" 
  android:editable="false"/>
<!-- 定義一個普通的按鈕組件 -->
<Button
  android:layout_width="match_parent" 
  android:layout_height="wrap_content" 
  android:text="簡單對話框"
  android:onClick="simple"
  />
<!-- 定義一個普通的按鈕組件 -->
<Button
  android:layout_width="match_parent" 
  android:layout_height="wrap_content" 
  android:text="簡單列表項對話框"
  android:onClick="simpleList"
  /> 
<!-- 定義一個普通的按鈕組件 -->
<Button
  android:layout_width="match_parent" 
  android:layout_height="wrap_content" 
  android:text="單選列表項對話框"
  android:onClick="singleChoice"
  /> 
<!-- 定義一個普通的按鈕組件 -->
<Button
  android:layout_width="match_parent" 
  android:layout_height="wrap_content" 
  android:text="多選列表項對話框"
  android:onClick="multiChoice"
  /> 
<!-- 定義一個普通的按鈕組件 -->
<Button
  android:layout_width="match_parent" 
  android:layout_height="wrap_content" 
  android:text="自定義列表項對話框"
  android:onClick="customList"
  /> 
<!-- 定義一個普通的按鈕組件 -->
<Button
  android:layout_width="match_parent" 
  android:layout_height="wrap_content" 
  android:text="自定義View對話框"
  android:onClick="customView"
  />         
</LinearLayout>

Activity代碼區:

public class MainActivity extends Activity {
  TextView show;
  String[] items = new String[] {
      "aserbao", "Android",
      " Java",
      "IOS" };

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    show = (TextView) findViewById(R.id.show);
  }

  public void simple(View source)
  {
    AlertDialog.Builder builder = new AlertDialog.Builder(this)
      // 設置對話框標題
      .setTitle("簡單對話框")
      // 設置圖標
      .setIcon(R.drawable.tools)
      .setMessage("對話框的測試內容\n第二行內容");
    // 為AlertDialog.Builder添加“確定”按鈕
    setPositiveButton(builder);
    // 為AlertDialog.Builder添加“取消”按鈕
    setNegativeButton(builder)
      .create()
      .show();
  }

  public void simpleList(View source)
  {
    AlertDialog.Builder builder = new AlertDialog.Builder(this)
        // 設置對話框標題
        .setTitle("簡單列表對話框")
            // 設置圖標
        .setIcon(R.drawable.tools)
            // 設置簡單的列表項內容
        .setItems(items, new OnClickListener()
        {
          @Override
          public void onClick(DialogInterface dialog, int which)
          {
            show.setText("你選中了《" + items[which] + "》");
          }
        });
    // 為AlertDialog.Builder添加“確定”按鈕
    setPositiveButton(builder);
    // 為AlertDialog.Builder添加“取消”按鈕
    setNegativeButton(builder)
        .create()
        .show();
  }

  public void singleChoice(View source)
  {
    AlertDialog.Builder builder = new AlertDialog.Builder(this)
        // 設置對話框標題
        .setTitle("單選列表項對話框")
            // 設置圖標
        .setIcon(R.drawable.tools)
            // 設置單選列表項,默認選中第二項(索引為1)
        .setSingleChoiceItems(items, 1, new OnClickListener()
        {
          @Override
          public void onClick(DialogInterface dialog, int which)
          {
            show.setText("你選中了《" + items[which] + "》");
          }
        });
      // 為AlertDialog.Builder添加“確定”按鈕
      setPositiveButton(builder);
      // 為AlertDialog.Builder添加“取消”按鈕
      setNegativeButton(builder)
        .create()
        .show();
  }

  public void multiChoice(View source)
  {
    AlertDialog.Builder builder = new AlertDialog.Builder(this)
        // 設置對話框標題
        .setTitle("多選列表項對話框")
            // 設置圖標
        .setIcon(R.drawable.tools)
            // 設置多選列表項,設置勾選第2項、第4項
        .setMultiChoiceItems(items
            , new boolean[]{false , true ,false ,true}, null);
    // 為AlertDialog.Builder添加“確定”按鈕
    setPositiveButton(builder);
    // 為AlertDialog.Builder添加“取消”按鈕
    setNegativeButton(builder)
        .create()
        .show();
  }

  public void customList(View source)
  {
    AlertDialog.Builder builder = new AlertDialog.Builder(this)
        // 設置對話框標題
        .setTitle("自定義列表項對話框")
            // 設置圖標
        .setIcon(R.drawable.tools)
            // 設置自定義列表項
        .setAdapter(new ArrayAdapter<String>(this
            , R.layout.array_item
            , items), null);
    // 為AlertDialog.Builder添加“確定”按鈕
    setPositiveButton(builder);
    // 為AlertDialog.Builder添加“取消”按鈕
    setNegativeButton(builder)
        .create()
        .show();
  }

  public void customView(View source)
  {
    // 裝載app\src\main\res\layout\login.xml界面布局文件
    TableLayout loginForm = (TableLayout)getLayoutInflater()
        .inflate( R.layout.login, null);
    new AlertDialog.Builder(this)
        // 設置對話框的圖標
        .setIcon(R.drawable.tools)
        // 設置對話框的標題
        .setTitle("自定義View對話框")
        // 設置對話框顯示的View對象
        .setView(loginForm)
        // 為對話框設置一個“確定”按鈕
        .setPositiveButton("登錄", new OnClickListener() {
          @Override
          public void onClick(DialogInterface dialog,
            int which) {
            // 此處可執行登錄處理
          }
        })
        // 為對話框設置一個“取消”按鈕
        .setNegativeButton("取消", new OnClickListener()
        {
          @Override
          public void onClick(DialogInterface dialog,
                    int which)
          {
            // 取消登錄,不做任何事情
          }
        })
        // 創建並顯示對話框
        .create()
        .show();
  }


  private AlertDialog.Builder setPositiveButton(
      AlertDialog.Builder builder)
  {
    // 調用setPositiveButton方法添加“確定”按鈕
    return builder.setPositiveButton("確定", new OnClickListener()
    {
      @Override
      public void onClick(DialogInterface dialog, int which)
      {
        show.setText("單擊了【確定】按鈕!");
      }
    });
  }
  private AlertDialog.Builder setNegativeButton(
      AlertDialog.Builder builder)
  {
    // 調用setNegativeButton方法添加“取消”按鈕
    return builder.setNegativeButton("取消", new OnClickListener()
    {
      @Override
      public void onClick(DialogInterface dialog, int which)
      {
        show.setText("單擊了【取消】按鈕!");
      }
    });
  }
}

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

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