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并显示它:

                
  1. package com.tianjf;
  2. import android.app.Activity;
  3. import android.app.AlertDialog;
  4. import android.app.Dialog;
  5. import android.os.Bundle;
  6. public class Dialog_AlertDialogDemoActivity extends Activity {
  7. /** Called when the activity is first created. */
  8. @Override
  9. public void onCreate(Bundle savedInstanceState) {
  10. super.onCreate(savedInstanceState);
  11. setContentView(R.layout.main);
  12. Dialog alertDialog = new AlertDialog.Builder(this).
  13. setTitle("对话框的标题").
  14. setMessage("对话框的内容").
  15. setIcon(R.drawable.ic_launcher).
  16. create();
  17. alertDialog.show();
  18. }
  19. }

运行结果如下:

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

                
  1. package com.tianjf;
  2. import android.app.Activity;
  3. import android.app.AlertDialog;
  4. import android.app.Dialog;
  5. import android.content.DialogInterface;
  6. import android.os.Bundle;
  7. public class Dialog_AlertDialogDemoActivity extends Activity {
  8. /** Called when the activity is first created. */
  9. @Override
  10. public void onCreate(Bundle savedInstanceState) {
  11. super.onCreate(savedInstanceState);
  12. setContentView(R.layout.main);
  13. Dialog alertDialog = new AlertDialog.Builder(this).
  14. setTitle("确定删除?").
  15. setMessage("您确定删除该条信息吗?").
  16. setIcon(R.drawable.ic_launcher).
  17. setPositiveButton("确定", new DialogInterface.OnClickListener() {
  18. @Override
  19. public void onClick(DialogInterface dialog, int which) {
  20. // TODO Auto-generated method stub
  21. }
  22. }).
  23. setNegativeButton("取消", new DialogInterface.OnClickListener() {
  24. @Override
  25. public void onClick(DialogInterface dialog, int which) {
  26. // TODO Auto-generated method stub
  27. }
  28. }).
  29. setNeutralButton("查看详情", new DialogInterface.OnClickListener() {
  30. @Override
  31. public void onClick(DialogInterface dialog, int which) {
  32. // TODO Auto-generated method stub
  33. }
  34. }).
  35. create();
  36. alertDialog.show();
  37. }
  38. }

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

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

三、类似ListView的AlertDialog
用setItems(CharSequence[] items, final OnClickListener listener)方法来实现类似ListView的AlertDialog
第一个参数是要显示的数据的数组,第二个参数是点击某个item的触发事件

                
  1. package com.tianjf;
  2. import android.app.Activity;
  3. import android.app.AlertDialog;
  4. import android.app.Dialog;
  5. import android.content.DialogInterface;
  6. import android.os.Bundle;
  7. import android.widget.Toast;
  8. public class Dialog_AlertDialogDemoActivity extends Activity {
  9. /** Called when the activity is first created. */
  10. @Override
  11. public void onCreate(Bundle savedInstanceState) {
  12. super.onCreate(savedInstanceState);
  13. setContentView(R.layout.main);
  14. final String[] arrayFruit = new String[] { "苹果", "橘子", "草莓", "香蕉" };
  15. Dialog alertDialog = new AlertDialog.Builder(this).
  16. setTitle("你喜欢吃哪种水果?").
  17. setIcon(R.drawable.ic_launcher)
  18. .setItems(arrayFruit, new DialogInterface.OnClickListener() {
  19. @Override
  20. public void onClick(DialogInterface dialog, int which) {
  21. Toast.makeText(Dialog_AlertDialogDemoActivity.this, arrayFruit[which], Toast.LENGTH_SHORT).show();
  22. }
  23. }).
  24. setNegativeButton("取消", new DialogInterface.OnClickListener() {
  25. @Override
  26. public void onClick(DialogInterface dialog, int which) {
  27. // TODO Auto-generated method stub
  28. }
  29. }).
  30. create();
  31. alertDialog.show();
  32. }
  33. }

运行结果如下:

四、类似RadioButton的AlertDialog
用setSingleChoiceItems(CharSequence[] items, int checkedItem, final OnClickListener listener)方法来实现类似RadioButton的AlertDialog
第一个参数是要显示的数据的数组,第二个参数是初始值(初始被选中的item),第三个参数是点击某个item的触发事件
在这个例子里面我们设了一个selectedFruitIndex用来记住选中的item的index

                
  1. package com.tianjf;
  2. import android.app.Activity;
  3. import android.app.AlertDialog;
  4. import android.app.Dialog;
  5. import android.content.DialogInterface;
  6. import android.os.Bundle;
  7. import android.widget.Toast;
  8. public class Dialog_AlertDialogDemoActivity extends Activity {
  9. private int selectedFruitIndex = 0;
  10. /** Called when the activity is first created. */
  11. @Override
  12. public void onCreate(Bundle savedInstanceState) {
  13. super.onCreate(savedInstanceState);
  14. setContentView(R.layout.main);
  15. final String[] arrayFruit = new String[] { "苹果", "橘子", "草莓", "香蕉" };
  16. Dialog alertDialog = new AlertDialog.Builder(this).
  17. setTitle("你喜欢吃哪种水果?").
  18. setIcon(R.drawable.ic_launcher)
  19. .setSingleChoiceItems(arrayFruit, 0, new DialogInterface.OnClickListener() {
  20. @Override
  21. public void onClick(DialogInterface dialog, int which) {
  22. selectedFruitIndex = which;
  23. }
  24. }).
  25. setPositiveButton("确认", new DialogInterface.OnClickListener() {
  26. @Override
  27. public void onClick(DialogInterface dialog, int which) {
  28. Toast.makeText(Dialog_AlertDialogDemoActivity.this, arrayFruit[selectedFruitIndex], Toast.LENGTH_SHORT).show();
  29. }
  30. }).
  31. setNegativeButton("取消", new DialogInterface.OnClickListener() {
  32. @Override
  33. public void onClick(DialogInterface dialog, int which) {
  34. // TODO Auto-generated method stub
  35. }
  36. }).
  37. create();
  38. alertDialog.show();
  39. }
  40. }

运行结果如下:

五、类似CheckBox的AlertDialog
用setMultiChoiceItems(CharSequence[] items, boolean[] checkedItems, final OnMultiChoiceClickListener listener)方法来实现类似CheckBox的AlertDialog
第一个参数是要显示的数据的数组,第二个参数是选中状态的数组,第三个参数是点击某个item的触发事件

                
  1. package com.tianjf;
  2. import android.app.Activity;
  3. import android.app.AlertDialog;
  4. import android.app.Dialog;
  5. import android.content.DialogInterface;
  6. import android.os.Bundle;
  7. import android.widget.Toast;
  8. public class Dialog_AlertDialogDemoActivity extends Activity {
  9. /** Called when the activity is first created. */
  10. @Override
  11. public void onCreate(Bundle savedInstanceState) {
  12. super.onCreate(savedInstanceState);
  13. setContentView(R.layout.main);
  14. final String[] arrayFruit = new String[] { "苹果", "橘子", "草莓", "香蕉" };
  15. final boolean[] arrayFruitSelected = new boolean[] {true, true, false, false};
  16. Dialog alertDialog = new AlertDialog.Builder(this).
  17. setTitle("你喜欢吃哪种水果?").
  18. setIcon(R.drawable.ic_launcher)
  19. .setMultiChoiceItems(arrayFruit, arrayFruitSelected, new DialogInterface.OnMultiChoiceClickListener() {
  20. @Override
  21. public void onClick(DialogInterface dialog, int which, boolean isChecked) {
  22. arrayFruitSelected[which] = isChecked;
  23. }
  24. }).
  25. setPositiveButton("确认", new DialogInterface.OnClickListener() {
  26. @Override
  27. public void onClick(DialogInterface dialog, int which) {
  28. StringBuilder stringBuilder = new StringBuilder();
  29. for (int i = 0; i < arrayFruitSelected.length; i++) {
  30. if (arrayFruitSelected[i] == true)
  31. {
  32. stringBuilder.append(arrayFruit[i] + "、");
  33. }
  34. }
  35. Toast.makeText(Dialog_AlertDialogDemoActivity.this, stringBuilder.toString(), Toast.LENGTH_SHORT).show();
  36. }
  37. }).
  38. setNegativeButton("取消", new DialogInterface.OnClickListener() {
  39. @Override
  40. public void onClick(DialogInterface dialog, int which) {
  41. // TODO Auto-generated method stub
  42. }
  43. }).
  44. create();
  45. alertDialog.show();
  46. }
  47. }

运行结果如下:

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

                
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical" >
  6. <LinearLayout
  7. android:layout_width="fill_parent"
  8. android:layout_height="wrap_content"
  9. android:gravity="center" >
  10. <TextView
  11. android:layout_width="0dip"
  12. android:layout_height="wrap_content"
  13. android:layout_weight="1"
  14. android:text="@string/user" />
  15. <EditText
  16. android:layout_width="0dip"
  17. android:layout_height="wrap_content"
  18. android:layout_weight="1" />
  19. </LinearLayout>
  20. <LinearLayout
  21. android:layout_width="fill_parent"
  22. android:layout_height="wrap_content"
  23. android:gravity="center" >
  24. <TextView
  25. android:layout_width="0dip"
  26. android:layout_height="wrap_content"
  27. android:layout_weight="1"
  28. android:text="@string/passward" />
  29. <EditText
  30. android:layout_width="0dip"
  31. android:layout_height="wrap_content"
  32. android:layout_weight="1" />
  33. </LinearLayout>
  34. </LinearLayout>

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

                
  1. package com.tianjf;
  2. import android.app.Activity;
  3. import android.app.AlertDialog;
  4. import android.app.Dialog;
  5. import android.content.DialogInterface;
  6. import android.os.Bundle;
  7. import android.view.LayoutInflater;
  8. import android.view.View;
  9. public class Dialog_AlertDialogDemoActivity extends Activity {
  10. /** Called when the activity is first created. */
  11. @Override
  12. public void onCreate(Bundle savedInstanceState) {
  13. super.onCreate(savedInstanceState);
  14. setContentView(R.layout.main);
  15. // 取得自定义View
  16. LayoutInflater layoutInflater = LayoutInflater.from(this);
  17. View myLoginView = layoutInflater.inflate(R.layout.login, null);
  18. Dialog alertDialog = new AlertDialog.Builder(this).
  19. setTitle("用户登录").
  20. setIcon(R.drawable.ic_launcher).
  21. setView(myLoginView).
  22. setPositiveButton("登录", new DialogInterface.OnClickListener() {
  23. @Override
  24. public void onClick(DialogInterface dialog, int which) {
  25. // TODO Auto-generated method stub
  26. }
  27. }).
  28. setNegativeButton("取消", new DialogInterface.OnClickListener() {
  29. @Override
  30. public void onClick(DialogInterface dialog, int which) {
  31. // TODO Auto-generated method stub
  32. }
  33. }).
  34. create();
  35. alertDialog.show();
  36. }
  37. }

运行结果如下:

















_______________________________________________________________________________________________________________________________________________________________________-

Android详细的对话框AlertDialog.Builder使用方法

我们在平时做 开发的时候,免不了会用到各种各样的对话框,相信有过其他 平台开发经验的朋友都会知道,大部分的平台都只提供了几个最简单的实现,如果我们想实现自己特定需求的对话框,大家可能首先会想到,通过继承等方式,重写我们自己的对话框。当然,这也是不失为一个不错的 解决方式,但是一般的情况却是这样,我们重写的对话框,也许只在一个特定的地方会用到,为了这一次的使用,而去创建一个新类,往往有点杀鸡用牛刀的感觉,甚至会对我们的 程序增加不必要的复杂性,对于这种情形的对话框有没有更优雅的解决方案呢?
幸运的是, android提供了这种问题的解决方案,刚开始接触android的时候,我在做一个自 定义对话框的时候,也是通过继承的方式来实现,后来随着对 文档了解的深入,发现了android起始已经提供了相应的接口Dialog Builder ,下面我就吧相关的内容在这里分享一下,也能让更多的初学者少走弯路。

  首先是一个最简单的 应用,就是弹出一个消息框,在android中可以这样实现

new AlertDialog.Builder(self)
.setTitle("标题")
.setMessage( "简单消息框" )
.setPositiveButton("确定",null)
.show();

效果如下:

上面的代码中我们新建了一个AlertDialog,并用Builder方法形成了一个对象链,通过一系列的设置方法,构造出我们需要的对话框,然 后调用show方法显示出来,注意到Builder方法的参数self,这个其实是Activity对象的引用,根据你所处的上下文来传入相应的引用就可以了。例如在onCreate方法中调用,只需传入this即 可。

下面是带确认和取消按钮的对话框:

newAlertDialog.Builder(self)
.setTitle("确认")
.setMessage("确定吗?")
.setPositiveButton("是",null)
.setNegativeButton("否",null)
.show();

注意到,这里有两个null参数,这里要放的其实是这两个按钮点击的监听程序,由于我们这里不需要监听这些动作,所以传入null值简单忽略掉,但是实际开发的时候一般都是需要传入监听器的,用来响应用户的操作。
下面是一个可以输入文本的对话框:

newAlertDialog.Builder(self)
.setTitle("请输入")
.setIcon(android.R.drawable.ic_dialog_info)
.setView(newEditText(self))
.setPositiveButton("确定",null)
.setNegativeButton("取消",null)
.show();

如上代码,我们用setView方法,为我们的对话框传入了一个文本编辑框,当然,你可以传入任何的视图对象,比如图片框,WebView等。。尽情发挥你的想象力吧~ 下面是单选框与多选框,也是非常有用的两种对话框:
newAlertDialog.Builder(self)
.setTitle("请选择")
.setIcon(android.R.drawable.ic_dialog_info)
.setSingleChoiceItems(newString[] {"选项1","选项2","选项3","选项4"},0,
newDialogInterface.OnClickListener() {
publicvoidonClick(DialogInterface dialog,intwhich) {
dialog.dismiss();
}
}
)
.setNegativeButton("取消",null)
.show();

1 newAlertDialog.Builder(self)
2 .setTitle("多选框")
3 .setMultiChoiceItems(newString[] {"选项1","选项2","选项3","选项4"},null,null)
4 .setPositiveButton("确定",null)
5 .setNegativeButton("取消",null)
6 .show();
单选和多选对话框应该是我们平时用的非常多的,代码应该很好理解,下面再最后介绍两个
列表对话框:
1 newAlertDialog.Builder(self)
2 .setTitle("列表框")
3 .setItems(newString[] {"列表项1","列表项2","列表项3"},null)
4 .setNegativeButton("确定",null)
5 .show();

最后,在对话框中显示图片:
1 ImageView img =newImageView(self);
2 img.setImageResource(R.drawable.icon);
3
4 newAlertDialog.Builder(self)
5 .setTitle("图片框")
6 .setView(img)
7 .setPositiveButton("确定",null)
8 .show();


我们传入了一个ImageView来显示图片,这里显示了一个经典的android小绿人图标~ ~,当然这里还可以放上网络图片,具体的实现方法就不介绍了,留给大家来练习吧~
最后总结一下,android平台为我们开发提供了极大的便利,DialogBuilder能做的不止这些,这里给大家展示的只是冰山一角,我们可以尽情的发挥想象,创造我们自己的对话框。

更多相关文章

  1. vapor开发随笔
  2. Android中一些实用的Tips
  3. android点击事件的传递机制
  4. android_定义多个Activity及跳转
  5. Android(安卓)双击返回键退出应用
  6. Android下拉刷新完全解析,教你如何一分钟实现下拉刷新功能
  7. android 定时器 总结
  8. android mediaPlayer error (-38,0)
  9. Unable to resolve target 'android-XX'问题

随机推荐

  1. Android smali语言功能指令详细介绍
  2. what is already installed?
  3. android Thread和Runnable的区别
  4. Android(安卓)ProgressBar 自定义样式(一)
  5. Android studio 开发一个用户登录界面
  6. [Android] 监听wifi状态
  7. Android App应用底部导航栏实现的一种方
  8. android 控件 NumberPicker 简单使用
  9. android 创建快捷方式
  10. android TabHost 对象报错