Android对话框(一)AlertDialog

最近在做项目,小组几个回了家。界面暂时没人做,用到自定义对话框只能临时去学。现在把对话框的相关整理。

<RelativeLayout 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"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.alertdialog.MainActivity" >

    <Button
        android:id="@+id/button1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:text="显示AlertDialog对话框" />

    <Button
        android:id="@+id/button2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/button1"
        android:text="显示列表对话框" />

    <Button
        android:id="@+id/button3"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/button2"
        android:text="显示单选列表对话框" />

    <Button
        android:id="@+id/button4"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/button3"
        android:text="显示多选对话框" />

    <Button
        android:id="@+id/button5"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/button4"
        android:layout_centerHorizontal="true"
        android:text="调用资源文件多选对话框" />

</RelativeLayout>
package com.example.alertdialog;

import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.view.View.OnClickListener;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;

public class MainActivity extends Activity {

	private Button button1;
	private Button button2;
	private final CharSequence[] items = {"广州","深圳","上海","北京"};
	private Button button3;
	private Button button4;
	private Button button5;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		button1 = (Button) findViewById(R.id.button1);
		button2 = (Button) findViewById(R.id.button2);
		button3 = (Button) findViewById(R.id.button3);
		button4 = (Button) findViewById(R.id.button4);
		button5 = (Button) findViewById(R.id.button5);
		button1.setOnClickListener(new OnClickListener() {

			public void onClick(View view) {
				AlertDialog.Builder  builder = new AlertDialog.Builder(MainActivity.this);
				builder.setTitle("提示");
				builder.setMessage("你确定要删除吗!");
				builder.setIcon(R.drawable.ic_launcher);
				builder.setPositiveButton("确定", new  DialogInterface.OnClickListener() {

					public void onClick(DialogInterface dialog, int arg1) {
						// 让对话框消失
						dialog.dismiss();
					}
				});
				builder.setNegativeButton("取消", new DialogInterface.OnClickListener() {

					public void onClick(DialogInterface arg0, int arg1) {
						// TODO Auto-generated method stub

					}
				});
				builder.setNeutralButton("忽略", new DialogInterface.OnClickListener() {

					@Override
					public void onClick(DialogInterface arg0, int arg1) {
						// TODO Auto-generated method stub
						//忽略用户操作,作用和取消一样
					}
				});
				AlertDialog alertDialog = builder.create();
				alertDialog.show();
			}
		});
		button2.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View arg0) {
				// TODO Auto-generated method stub
				AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
				builder.setTitle("提示");
				//不能设置setMessage的内容,不然会覆盖原来item的值
				//在OnClickListener前要加DialogInterface,不然会报错
				builder.setItems(items, new DialogInterface.OnClickListener() {

					@Override
					public void onClick(DialogInterface arg0, int index) {
						//item[index]不能转化为String,转化为CharSequence就行了
						CharSequence select_item = items[index];
						Toast.makeText(MainActivity.this, "你选择了城市"+select_item, 1).show();
					}
				});
				AlertDialog alertDialog = builder.create();
				alertDialog.show();
			}
		});
		button3.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View arg0) {
				// TODO Auto-generated method stub
				AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
				builder.setTitle("请选择以下城市");
				builder.setIcon(R.drawable.ic_launcher);
				/*
				 * 第一个参数:显示在对话框中供选择列表
				 * 第二个参数:默认选择的值,-1表示一个都没选
				 * 第三个参数:监听器
				 */
	            builder.setSingleChoiceItems(items, -1, new DialogInterface.OnClickListener() {

					@Override
					public void onClick(DialogInterface dialog, int which) {
						// TODO Auto-generated method stub
						CharSequence select_item = items[which];
						Toast.makeText(MainActivity.this, "-->>"+select_item, 1).show();
						dialog.dismiss();
					}
				});
				AlertDialog alertDialog = builder.create();
	            alertDialog.show();
			}
		});
		button4.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View arg0) {

				AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
				builder.setTitle("请选择以下城市");
				/*
				 * 第一个参数:供选择多选列表
				 * 第二个参数:boolean类型的数组,表示选中的项;如设置为null,表示没有选项默认被选中
				 * 第三个参数:不用说,监听器
				 */
				builder.setMultiChoiceItems(items, new boolean[]{false,false,true,false}, new DialogInterface.OnMultiChoiceClickListener() {

					@Override
					public void onClick(DialogInterface arg0, int arg1, boolean ischecked) {
						// TODO Auto-generated method stub
					}
				});
				builder.setPositiveButton("确定", new DialogInterface.OnClickListener() {

					@Override
					public void onClick(DialogInterface arg0, int arg1) {
						// 直接获取选择的值

					}
				});
				AlertDialog alertDialog = builder.create();
				alertDialog.show();
			}
		});
		//其实是button4的另一种写法
		button5.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View arg0) {
				AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
				builder.setTitle("请选择以下城市");
				//获取选择值:使用StringBuffer追加,中间用逗号分隔开来
				builder.setMultiChoiceItems(R.array.city,  new boolean[]{false,false,true,false}, new DialogInterface.OnMultiChoiceClickListener() {
					public void onClick(DialogInterface arg0, int arg1, boolean arg2) {
						// TODO Auto-generated method stub
					}
				});
				builder.setPositiveButton("确定", new DialogInterface.OnClickListener() {
					public void onClick(DialogInterface arg0, int arg1) {
						// 获取选择的值

					}
				});
				AlertDialog alertDialog = builder.create();
				alertDialog.show();
			}
		});
	}
}

时间: 2024-10-05 10:57:20

Android对话框(一)AlertDialog的相关文章

Android对话框

这周过的实在是艰辛,自打这周二起我的本本就开始闹"罢工",最后还是重装系统了事. . .   只是可怜了我的那些被格了的软件(悲伤辣么大)!  往事不要再提,人生几度风雨... 简单的说一下(这不是介绍)Android对话框吧 1 // Android对话框 2 AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);//创建对话框 3 builder.setTitle("警告"

Android(java)学习笔记197:常见对话框使用AlertDialog.Builder

1.确认取消对话框: AlertDialog.Builder builder = new Builder(this); // 告诉工厂生产什么样的产品 builder.setTitle("友情提醒"); builder.setMessage("若练此功,必先自宫,是否继续?"); builder.setPositiveButton("好的,想好了", new OnClickListener() { @Override public void on

Android中的AlertDialog使用示例三(单向选择确定对话框)

在Android开发中,我们经常会需要在Android界面上弹出一些对话框,比如询问用户或者让用户选择.这些功能我们叫它Android Dialog对话框,AlertDialog实现方法为建造者模式.下面我们简单模拟一个挑媳妇的选择确定对话框(单选)对话框,不同于示例二之处在于本次只要不确定就可以后悔哦,如下图: Layout界面代码: 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout

Android中的AlertDialog(警告对话框)

在Android开发中,我们经常会需要在Android界面上弹出一些对话框,比如询问用户或者让用户选择.这些功能我们叫它Android Dialog对话框,AlertDialog实现方法为建造者模式.下面我们模拟卸载应用程序时弹出的最为普通的警告对话框,如下图: layout布局界面代码示例: 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="h

Android 对话框 (AlertDialog)

Android 提供了 AlertDialog 类可通过其内部类 Builder 轻松创建对话框窗口,但是没法对这个对话框窗口进行定制,为了修改 AlertDialog 窗口显示的外观,解决的办法就是创建一个指定的 AlertDialog 和 AlertDialog.Builder 类. 定义外观 我们希望将上面默认的对话框外观修改为如下图所示的新对话框风格: 该对话框将支持下面特性: 可从资源或者字符串直接指定对话框标题 可从资源.字符串和自定义布局来设置对话框内容 可设置按钮和相应的事件处理

Android中的AlertDialog使用示例四(多项选择确定对话框)

在Android开发中,我们经常会需要在Android界面上弹出一些对话框,比如询问用户或者让用户选择.这些功能我们叫它Android Dialog对话框,AlertDialog实现方法为建造者模式.下面我们简单模拟一个皇帝选妃的选择确定对话框(多选),如下图: Layout(仅布置一个按钮)界面代码: 1 <?xml version="1.0" encoding="utf-8"?> 2 <RelativeLayout xmlns:android=

Android中使用AlertDialog实现几种不同的对话框

场景 app中常见的对话框. 简单的带确定取消按钮的对话框 带列表的对话框 带单项选择的对话框 带多项选择的对话框 注: 博客: https://blog.csdn.net/badao_liumang_qizhi 关注公众号 霸道的程序猿 获取编程相关电子书.教程推送与免费下载. 实现 将布局改为LinearLayout,并通过android:orientation="vertical">设置为垂直布局.并添加四个按钮 <?xml version="1.0&quo

Android 对话框详解(一)

对话框是程序运行中的弹出窗口.例如,当用户要删除一个联系方式时,会弹出一个 对话框,让用户确认是否真的要删除. Android系统提供了四种对话框:警告对话框 (AlertDialog).进度对话框(ProgressDialog).日期选择对话框(DatePickerDialog)和时间选择对话框(TimePickerDialog) 警告对话框(AlertDialog) AlertDialog是一个提示窗口,要求用户作出选择.该对话框中一般会有几个选择按钮.标题信息和提示信息. 在程序中创建对话

&lt;Android&gt;对话框的使用

Android系统提供四种对话框:警告对话框(AlertDialog),进度对话框(ProgressDialog),日期选择对话框(DatePickerDialog)和时间选择对话框(TimePickerDialog).此处重点针对AlertDialog. 1.获得AlertDialog的静态内部类Builder对象,由该类来创建对话框 2.通过Builder对象来设置对话框的标题,按钮以及按钮将要响应的事件 3.调用Builder的create()方法创建对话框 4.调用AlertDialog