android中的AlertDialog详细概述

android的AlertDialog详解


AlertDialog的构造方法全部是Protected的,所以不能直接通过new一个AlertDialog来创建出一个AlertDialog。

要创建一个AlertDialog,就要用到AlertDialog.Builder中的create()方法。

使用AlertDialog.Builder创建对话框需要了解以下几个方法:

setTitle :为对话框设置标题

setIcon :为对话框设置图标

setMessage:为对话框设置内容

setView : 给对话框设置自定义样式

setItems :设置对话框要显示的一个list,一般用于显示几个命令时

setMultiChoiceItems :用来设置对话框显示一系列的复选框

setNeutralButton    :普通按钮

setPositiveButton   :给对话框添加"Yes"按钮

setNegativeButton :对话框添加"No"按钮

create : 创建对话框

show :显示对话框

一、简单的AlertDialog

下面,创建一个简单的ALertDialog并显示它:

[java]  package com.tianjf;

import android.app.Activity;

import android.app.AlertDialog;

import android.app.Dialog;

import android.os.Bundle;

public class Dialog_AlertDialogDemoActivity extends Activity {

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

Dialog alertDialog = new AlertDialog.Builder(this).

setTitle("对话框的标题").

setMessage("对话框的内容").

setIcon(R.drawable.ic_launcher).

create();

alertDialog.show();

}

}

package com.tianjf;

import android.app.Activity;

import android.app.AlertDialog;

import android.app.Dialog;

import android.os.Bundle;

public class Dialog_AlertDialogDemoActivity extends Activity {

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

Dialog alertDialog = new AlertDialog.Builder(this).

setTitle("对话框的标题").

setMessage("对话框的内容").

setIcon(R.drawable.ic_launcher).

create();

alertDialog.show();

}

}运行结果如下:

二、带按钮的AlertDialog

上面的例子很简单,下面我们在这个AlertDialog上面加几个Button,实现删除操作的提示对话框

[java] package com.tianjf;

import android.app.Activity;

import android.app.AlertDialog;

import android.app.Dialog;

import android.content.DialogInterface;

import android.os.Bundle;

public class Dialog_AlertDialogDemoActivity extends Activity {

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

Dialog alertDialog = new AlertDialog.Builder(this).

setTitle("确定删除?").

setMessage("您确定删除该条信息吗?").

setIcon(R.drawable.ic_launcher).

setPositiveButton("确定", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

// TODO Auto-generated method stub

}

}).

setNegativeButton("取消", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

// TODO Auto-generated method stub

}

}).

setNeutralButton("查看详情", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

// TODO Auto-generated method stub

}

}).

create();

alertDialog.show();

}

}

package com.tianjf;

import android.app.Activity;

import android.app.AlertDialog;

import android.app.Dialog;

import android.content.DialogInterface;

import android.os.Bundle;

public class Dialog_AlertDialogDemoActivity extends Activity {

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

Dialog alertDialog = new AlertDialog.Builder(this).

setTitle("确定删除?").

setMessage("您确定删除该条信息吗?").

setIcon(R.drawable.ic_launcher).

setPositiveButton("确定", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

// TODO Auto-generated method stub

}

}).

setNegativeButton("取消", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

// TODO Auto-generated method stub

}

}).

setNeutralButton("查看详情", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

// TODO Auto-generated method stub

}

}).

create();

alertDialog.show();

}

}在这个例子中,我们定义了三个按钮,分别是"Yes"按钮,"No"按钮以及一个普通按钮,每个按钮都有onClick事件,TODO的地方可以放点了按钮之后想要做的一些处理

看一下运行结果:

可以看到三个按钮添加到了AlertDialog上,三个没有添加事件处理的按钮,点了只是关闭对话框,没有任何其他操作。

三、类似ListView的AlertDialog

用setItems(CharSequence[] items, final OnClickListener listener)方法来实现类似ListView的AlertDialog

第一个参数是要显示的数据的数组,第二个参数是点击某个item的触发事件

[java] package com.tianjf;

import android.app.Activity;

import android.app.AlertDialog;

import android.app.Dialog;

import android.content.DialogInterface;

import android.os.Bundle;

import android.widget.Toast;

public class Dialog_AlertDialogDemoActivity extends Activity {

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

final String[] arrayFruit = new String[] { "苹果", "橘子", "草莓", "香蕉" };

Dialog alertDialog = new AlertDialog.Builder(this).

setTitle("你喜欢吃哪种水果?").

setIcon(R.drawable.ic_launcher)

.setItems(arrayFruit, new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

Toast.makeText(Dialog_AlertDialogDemoActivity.this, arrayFruit[which], Toast.LENGTH_SHORT).show();

}

}).

setNegativeButton("取消", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

// TODO Auto-generated method stub

}

}).

create();

alertDialog.show();

}

}

package com.tianjf;

import android.app.Activity;

import android.app.AlertDialog;

import android.app.Dialog;

import android.content.DialogInterface;

import android.os.Bundle;

import android.widget.Toast;

public class Dialog_AlertDialogDemoActivity extends Activity {

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

final String[] arrayFruit = new String[] { "苹果", "橘子", "草莓", "香蕉" };

Dialog alertDialog = new AlertDialog.Builder(this).

setTitle("你喜欢吃哪种水果?").

setIcon(R.drawable.ic_launcher)

.setItems(arrayFruit, new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

Toast.makeText(Dialog_AlertDialogDemoActivity.this, arrayFruit[which], Toast.LENGTH_SHORT).show();

}

}).

setNegativeButton("取消", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

// TODO Auto-generated method stub

}

}).

create();

alertDialog.show();

}

}运行结果如下:

四、类似RadioButton的AlertDialog

用setSingleChoiceItems(CharSequence[] items, int checkedItem, final OnClickListener listener)方法来实现类似RadioButton的AlertDialog

第一个参数是要显示的数据的数组,第二个参数是初始值(初始被选中的item),第三个参数是点击某个item的触发事件

在这个例子里面我们设了一个selectedFruitIndex用来记住选中的item的index

[java] package com.tianjf;

import android.app.Activity;

import android.app.AlertDialog;

import android.app.Dialog;

import android.content.DialogInterface;

import android.os.Bundle;

import android.widget.Toast;

public class Dialog_AlertDialogDemoActivity extends Activity {

private int selectedFruitIndex = 0;

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

final String[] arrayFruit = new String[] { "苹果", "橘子", "草莓", "香蕉" };

Dialog alertDialog = new AlertDialog.Builder(this).

setTitle("你喜欢吃哪种水果?").

setIcon(R.drawable.ic_launcher)

.setSingleChoiceItems(arrayFruit, 0, new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

selectedFruitIndex = which;

}

}).

setPositiveButton("确认", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

Toast.makeText(Dialog_AlertDialogDemoActivity.this, arrayFruit[selectedFruitIndex], Toast.LENGTH_SHORT).show();

}

}).

setNegativeButton("取消", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

// TODO Auto-generated method stub

}

}).

create();

alertDialog.show();

}

}

package com.tianjf;

import android.app.Activity;

import android.app.AlertDialog;

import android.app.Dialog;

import android.content.DialogInterface;

import android.os.Bundle;

import android.widget.Toast;

public class Dialog_AlertDialogDemoActivity extends Activity {

private int selectedFruitIndex = 0;

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

final String[] arrayFruit = new String[] { "苹果", "橘子", "草莓", "香蕉" };

Dialog alertDialog = new AlertDialog.Builder(this).

setTitle("你喜欢吃哪种水果?").

setIcon(R.drawable.ic_launcher)

.setSingleChoiceItems(arrayFruit, 0, new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

selectedFruitIndex = which;

}

}).

setPositiveButton("确认", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

Toast.makeText(Dialog_AlertDialogDemoActivity.this, arrayFruit[selectedFruitIndex], Toast.LENGTH_SHORT).show();

}

}).

setNegativeButton("取消", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

// TODO Auto-generated method stub

}

}).

create();

alertDialog.show();

}

}

运行结果如下:

五、类似CheckBox的AlertDialog

用setMultiChoiceItems(CharSequence[] items, boolean[] checkedItems, final OnMultiChoiceClickListener listener)方法来实现类似CheckBox的AlertDialog

第一个参数是要显示的数据的数组,第二个参数是选中状态的数组,第三个参数是点击某个item的触发事件

[java] package com.tianjf;

import android.app.Activity;

import android.app.AlertDialog;

import android.app.Dialog;

import android.content.DialogInterface;

import android.os.Bundle;

import android.widget.Toast;

public class Dialog_AlertDialogDemoActivity extends Activity {

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

final String[] arrayFruit = new String[] { "苹果", "橘子", "草莓", "香蕉" };

final boolean[] arrayFruitSelected = new boolean[] {true, true, false, false};

Dialog alertDialog = new AlertDialog.Builder(this).

setTitle("你喜欢吃哪种水果?").

setIcon(R.drawable.ic_launcher)

.setMultiChoiceItems(arrayFruit, arrayFruitSelected, new DialogInterface.OnMultiChoiceClickListener() {

@Override

public void onClick(DialogInterface dialog, int which, boolean isChecked) {

arrayFruitSelected[which] = isChecked;

}

}).

setPositiveButton("确认", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

StringBuilder stringBuilder = new StringBuilder();

for (int i = 0; i < arrayFruitSelected.length; i++) {

if (arrayFruitSelected[i] == true)

{

stringBuilder.append(arrayFruit[i] + "、");

}

}

Toast.makeText(Dialog_AlertDialogDemoActivity.this, stringBuilder.toString(), Toast.LENGTH_SHORT).show();

}

}).

setNegativeButton("取消", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

// TODO Auto-generated method stub

}

}).

create();

alertDialog.show();

}

}

package com.tianjf;

import android.app.Activity;

import android.app.AlertDialog;

import android.app.Dialog;

import android.content.DialogInterface;

import android.os.Bundle;

import android.widget.Toast;

public class Dialog_AlertDialogDemoActivity extends Activity {

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

final String[] arrayFruit = new String[] { "苹果", "橘子", "草莓", "香蕉" };

final boolean[] arrayFruitSelected = new boolean[] {true, true, false, false};

Dialog alertDialog = new AlertDialog.Builder(this).

setTitle("你喜欢吃哪种水果?").

setIcon(R.drawable.ic_launcher)

.setMultiChoiceItems(arrayFruit, arrayFruitSelected, new DialogInterface.OnMultiChoiceClickListener() {

@Override

public void onClick(DialogInterface dialog, int which, boolean isChecked) {

arrayFruitSelected[which] = isChecked;

}

}).

setPositiveButton("确认", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

StringBuilder stringBuilder = new StringBuilder();

for (int i = 0; i < arrayFruitSelected.length; i++) {

if (arrayFruitSelected[i] == true)

{

stringBuilder.append(arrayFruit[i] + "、");

}

}

Toast.makeText(Dialog_AlertDialogDemoActivity.this, stringBuilder.toString(), Toast.LENGTH_SHORT).show();

}

}).

setNegativeButton("取消", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

// TODO Auto-generated method stub

}

}).

create();

alertDialog.show();

}

}运行结果如下:

六、自定义View的AlertDialog

有时候我们不能满足系统自带的AlertDialog风格,就比如说我们要实现一个Login画面,有用户名和密码,这时我们就要用到自定义View的AlertDialog

先创建Login画面的布局文件

[html] <?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:orientation="vertical" >

<LinearLayout

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:gravity="center" >

<TextView

android:layout_width="0dip"

android:layout_height="wrap_content"

android:layout_weight="1"

android:text="@string/user" />

<EditText

android:layout_width="0dip"

android:layout_height="wrap_content"

android:layout_weight="1" />

</LinearLayout>

<LinearLayout

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:gravity="center" >

<TextView

android:layout_width="0dip"

android:layout_height="wrap_content"

android:layout_weight="1"

android:text="@string/passward" />

<EditText

android:layout_width="0dip"

android:layout_height="wrap_content"

android:layout_weight="1" />

</LinearLayout>

</LinearLayout>

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:orientation="vertical" >

<LinearLayout

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:gravity="center" >

<TextView

android:layout_width="0dip"

android:layout_height="wrap_content"

android:layout_weight="1"

android:text="@string/user" />

<EditText

android:layout_width="0dip"

android:layout_height="wrap_content"

android:layout_weight="1" />

</LinearLayout>

<LinearLayout

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:gravity="center" >

<TextView

android:layout_width="0dip"

android:layout_height="wrap_content"

android:layout_weight="1"

android:text="@string/passward" />

<EditText

android:layout_width="0dip"

android:layout_height="wrap_content"

android:layout_weight="1" />

</LinearLayout>

</LinearLayout>

然后在Activity里面把Login画面的布局文件添加到AlertDialog上

[java] package com.tianjf;

import android.app.Activity;

import android.app.AlertDialog;

import android.app.Dialog;

import android.content.DialogInterface;

import android.os.Bundle;

import android.view.LayoutInflater;

import android.view.View;

public class Dialog_AlertDialogDemoActivity extends Activity {

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

// 取得自定义View

LayoutInflater layoutInflater = LayoutInflater.from(this);

View myLoginView = layoutInflater.inflate(R.layout.login, null);

Dialog alertDialog = new AlertDialog.Builder(this).

setTitle("用户登录").

setIcon(R.drawable.ic_launcher).

setView(myLoginView).

setPositiveButton("登录", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

// TODO Auto-generated method stub

}

}).

setNegativeButton("取消", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

// TODO Auto-generated method stub

}

}).

create();

alertDialog.show();

}

}

package com.tianjf;

import android.app.Activity;

import android.app.AlertDialog;

import android.app.Dialog;

import android.content.DialogInterface;

import android.os.Bundle;

import android.view.LayoutInflater;

import android.view.View;

public class Dialog_AlertDialogDemoActivity extends Activity {

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

// 取得自定义View

LayoutInflater layoutInflater = LayoutInflater.from(this);

View myLoginView = layoutInflater.inflate(R.layout.login, null);

Dialog alertDialog = new AlertDialog.Builder(this).

setTitle("用户登录").

setIcon(R.drawable.ic_launcher).

setView(myLoginView).

setPositiveButton("登录", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

// TODO Auto-generated method stub

}

}).

setNegativeButton("取消", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

// TODO Auto-generated method stub

}

}).

create();

alertDialog.show();

}

}运行结果如下:

时间: 2024-12-10 13:18:18

android中的AlertDialog详细概述的相关文章

Android中时间戳的详细解释

Android中时间戳的详细解释: (1).定义: 时间戳就是根据当前系统时间生成的一组随机数字. (2).作用: 作为对数据唯一性的一种判断依据.避免了重复修改数据所带来的错误! (3).应用: (1).在银行account表中建立时间戳字段timestamp,设定为文本类型varchar. (2).当银行A读取account表中的存款字段时,同时也读取时间戳字段,比如123456. (3).当银行A修改完存款数值后,进行存盘操作时,将先前读取的时间戳123456与当时表中的时间戳进行一次对比

Android中Service的详细解释与使用

Android中Service的详细解释与使用: 概念: (1).Service可以说是一个在后台运行的Activity.它不是一个单独的进程,它只需要应用告诉它要在后台做什么就可以了. (2).它要是实现和用户的交互的话需要通过通知栏或者是通过发送广播,UI去接收显示. (3).它的应用十分广泛,尤其是在框架层,应用更多的是对系统服务的调用. 作用: (1).它用于处理一些不干扰用户使用的后台操作.如下载,网络获取.播放音乐,他可以通过INTENT来开启,同时也可以绑定到宿主对象(调用者例如A

Android中WebView的详细解释

Android中WebView的详细解释: 1. 概念: WebView(网络视图)能加载显示网页,可以将其视为一个浏览器.它使用了WebKit渲染引擎加载显示网页. 2. 使用方法: (1).实例化WebView组件: A.在Activity中实例化WebView组件.eg: WebView webView = new WebView(this); B.调用WebView的loadUrl()方法,设置WevView要显示的网页.eg: 互联网用:webView.loadUrl("http://

Android中资源管理机制详细分析

尊重原创:http://blog.csdn.net/yuanzeyao/article/details/42386549 在Android中,所有的资源都在res目录下存放,包括drawable,layout,strings,anim等等,当我们向工程中加入任何一个资源时,会在R类中相应会为该 资源分配一个id,我们在应用中就是通过这个id来访问资源的,相信做过Andorid开发的朋友对于这些肯定不会陌生,所以这个也不是我今天想要说的,我今天想和大家一起学习的是Android是如何管理资源的,在

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开发中,我们经常会需要在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中的AlertDialog遇到的错误

public void showAddIPCDialog() { Log.i("ssssssssss","wwwwwwwwww"); LayoutInflater inflater = this.getActivity().getLayoutInflater(); Log.i("ssssssssssinflater",inflater+"");//错误 // final View layout = inflater.infla