android中常见对话框之一AlertDialog
在Android应用中,有多种对话框:Dialog、AlertDialog、ProgressDialog、时间、日期等对话框。
(1)Dialog类,是一切对话框的基类,需要注意的是,Dialog类虽然可以在界面上显示,但是并非继承与习惯的View类,而是直接从java.lang.Object开始构造出来的,类似于Activity,Dialog也是有生命周期的,它的生命周期由Activity来维护。Activity负责生产,保存,回复它,在生命周期的每个阶段都有一些回调函数供系统方向调用。
(2)AlertDialog是Dialog的一个直接子类,AlertDialog也是Android系统当中最常用的对话框之一。一个AlertDialog可以有两个Button或3个Button,可以对一个AlertDialog设置title和message.不能直接通过AlertDialog的构造函数来生成一个AlertDialog.一般生成AlertDialog的时候都是通过它的一个内部静态类AlertDialog.builder来构造的。
(3)顾名思义,这个Dialog负责给用户显示进度的相关情况,它是AlertDialog的一个子类。
本章我们着重讲解一下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 :显示对话框
一、简单对话框
Dialog类虽然可以在界面上显示,但是并非继承与习惯的View类,而是直接从java.lang.Object开始构造出来的。
1、打开“src/com.genwoxue.alertdialog_a/MainActivity.java”文件。
然后输入以下代码:
.package com.example.alertdialog_a;
.
.import android.os.Bundle;
.import android.app.Activity;
.import android.app.AlertDialog.Builder;
.import android.app.AlertDialog;
.
.public class MainActivity extends Activity {
.
. @Override
. protected void onCreate(Bundle savedInstanceState) {
. super.onCreate(savedInstanceState);
. setContentView(R.layout.activity_main);
. //AlertDialog的构造方法全部是Protected的,所以不能直接通过new一个AlertDialog来创建出一个AlertDialog。
. //要创建一个AlertDialog,就要用到AlertDialog.Builder中的create()方法
. Builder adInfo=new AlertDialog.Builder(this);
. adInfo.setTitle("简单对话框"); //设置标题
. adInfo.setMessage("这是一个美丽的传说,精美的石头会唱歌……"); //设置内容
. adInfo.setIcon(R.drawable.ic_launcher); //设置图标
. adInfo.create();
. adInfo.show();
.
. }
.}
2、运行,显示界面:
二、带按钮的AlertDialog
我们在执行删除、确认等操作时,常常在对话框中单击按钮,AlertDialog可以显示3个按钮。
1、打开“src/com.genwoxue.alertdialog_bMainActivity.java”文件。
然后输入以下代码:
.package com.example.alertdialog_b;
.
.import android.os.Bundle;
.import android.app.Activity;
.import android.app.AlertDialog.Builder;
.import android.app.AlertDialog;
.import android.content.DialogInterface;
.
.public class MainActivity extends Activity {
.
. @Override
. protected void onCreate(Bundle savedInstanceState) {
. super.onCreate(savedInstanceState);
. setContentView(R.layout.activity_main);
.
. Builder dialog = new AlertDialog.Builder(this);
. dialog.setTitle("确定删除?");
. dialog.setMessage("您确定删除该条信息吗?");
. dialog.setIcon(R.drawable.ic_launcher);
. //为“确定”按钮注册监听事件
. dialog.setPositiveButton("确定", new DialogInterface.OnClickListener() {
. @Override
. public void onClick(DialogInterface dialog, int which) {
. // 根据实际情况编写相应代码。
. }
. });
. //为“取消”按钮注册监听事件
. dialog.setNegativeButton("取消", new DialogInterface.OnClickListener() {
. @Override
. public void onClick(DialogInterface dialog, int which) {
. // 根据实际情况编写相应代码。
. }
. });
. //为“查看详情”按钮注册监听事件
. dialog.setNeutralButton("查看详情", new DialogInterface.OnClickListener() {
. @Override
. public void onClick(DialogInterface dialog, int which) {
. // 根据实际情况编写相应代码。
. }
. });
. dialog.create();
. dialog.show();
. }
.}
2、运行,显示界面:
三、带有单选按钮、类似ListView的AlertDialog对话框
setSingleChoiceItems(CharSequence[] items, int checkedItem,final OnClickListener listener)方法来实现类似ListView的AlertDialog,第一个参数是要显示的数据的数组,第二个参数指定默认选中项,第三个参数设置监听处理事件。
1、打开“src/com.genwoxue.alertdialog_c/MainActivity.java”文件。
然后输入以下代码:
.package com.genwoxue.alertdialog_c;
.
.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 MainActivity extends Activity {
. //声明选中项变量
. private int selectedCityIndex = ;
.
. @Override
. public void onCreate(Bundle savedInstanceState) {
. super.onCreate(savedInstanceState);
. setContentView(R.layout.activity_main);
. //定义城市数组
. final String[] arrayCity = new String[] { "杭州", "纽约", "威尼斯", "北海道" };
.
. //实例化AlertDialog对话框
. Dialog alertDialog = new AlertDialog.Builder(this)
. .setTitle("你最喜欢哪个地方?") //设置标题
. .setIcon(R.drawable.ic_launcher) //设置图标
. //设置对话框显示一个单选List,指定默认选中项,同时设置监听事件处理
. .setSingleChoiceItems(arrayCity, , new DialogInterface.OnClickListener() {
.
. @Override
. public void onClick(DialogInterface dialog, int which) {
. selectedCityIndex = which; //选中项的索引保存到选中项变量
. }
. })
. //添加取消按钮并增加监听处理
. .setNegativeButton("取消", new DialogInterface.OnClickListener() {
. @Override
. public void onClick(DialogInterface dialog, int which) {
. // TODO Auto-generated method stub
. }
. })
. //添加确定按钮并增加监听处理
. .setPositiveButton("确认", new DialogInterface.OnClickListener() {
. @Override
. public void onClick(DialogInterface dialog, int which) {
. Toast.makeText(getApplication(), arrayCity[selectedCityIndex], Toast.LENGTH_SHORT).show();
. }
. })
. .create();
. alertDialog.show();
. }
.}
2、运行,显示界面:
四、带有复选框、类似ListView的AlertDialog对话框
setMultiChoiceItems(CharSequence[] items, boolearn[] checkedItems,final OnMultiChoiceClickListener listener)方法来实现类似ListView的AlertDialog,第一个参数是要显示的数据的数组,第二个参数指定默认选中项,第在个参数设置监听处理事件。
1、打开“src/com.genwoxue.alertdialog_d/MainActivity.java”文件。
然后输入以下代码:
.package com.genwoxue.alertdialog_d;
.
.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 MainActivity extends Activity {
.
. @Override
. public void onCreate(Bundle savedInstanceState) {
. super.onCreate(savedInstanceState);
. setContentView(R.layout.activity_main);
. //定义运动数组
. final String[] arraySport = new String[] { "足球", "篮球", "网球", "乒乓球" };
. final boolean[] arraySportSelected = new boolean[] {false, false, false, false};
.
. //实例化AlertDialog对话框
. Dialog alertDialog = new AlertDialog.Builder(this)
. .setTitle("你喜欢哪些运动?") //设置标题
. .setIcon(R.drawable.ic_launcher) //设置图标
. //设置对话框显示一个复选List,指定默认选中项,同时设置监听事件处理
. .setMultiChoiceItems(arraySport, arraySportSelected, new DialogInterface.OnMultiChoiceClickListener() {
.
. @Override
. public void onClick(DialogInterface dialog, int which, boolean isChecked) {
. arraySportSelected[which] = isChecked; //选中项的布尔真假保存到选中项变量
. }
. })
. //添加取消按钮并增加监听处理
. .setPositiveButton("确认", new DialogInterface.OnClickListener() {
.
. @Override
. public void onClick(DialogInterface dialog, int which) {
. StringBuilder stringBuilder = new StringBuilder();
. for (int i = ; i < arraySportSelected.length; i++) {
. if (arraySportSelected[i] == true){
. stringBuilder.append(arraySport[i] + "、");
. }
. }
. Toast.makeText(getApplication(), 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();
. }
.}
2、运行,显示界面:
android中常见对话框之一AlertDialog的更多相关文章
- Android中的对话框AlertDialog使用技巧合集-转载
Android中的对话框AlertDialog使用技巧合集 文章来自:http://blog.csdn.net/blue6626/article/details/6641105 今天我用自 ...
- Android 中常见控件的介绍和使用
1 TextView文本框 1.1 TextView类的结构 TextView 是用于显示字符串的组件,对于用户来说就是屏幕中一块用于显示文本的区域.TextView类的层次关系如下: java.la ...
- Android Studio常见对话框(普通对话框、单选对话框、多选对话框、进度条对话框、消息对话框、自定义对话框)
Android Studio常见对话框(普通对话框.单选对话框.多选对话框.进度条对话框.消息对话框.自定义对话框) 1.普通对话框 2.单选对话框 3.多选对话框 4.进度条对话框 5.消息对话框 ...
- Android中常见的内存泄漏
为什么会产生内存泄漏? 当一个对象已经不需要再使用了,本该被回收时,而有另外一个正在使用的对象持有它的引用从而导致它不能被回收,这导致本该被回收的对象不能被回收而停留在堆内存中,这就产生了内存泄漏. ...
- Android中Dialog对话框的调用及监听
Android中经常会需要在Android界面上弹出一些对话框提示用户,比如App的退出的时候都会有各种框来挽留你的心,支付宝的时候输入密码的密码框,非常常见及其实用的功能,类似于JS中的alter, ...
- Android中常见的MVC模式
MVC模式的简要介绍 MVC是三个单词的缩写,分别为: 模型(Model),视图(View)和控制Controller). MVC模式的目的就是实现Web系统的职能分工. Model层实现系统中的业务 ...
- Android中Dialog对话框
布局文件xml: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns ...
- Android中弹出对话框,AlertDialog关键代码
写在这里便于以后查看. Android中弹出对话框的关键代码: btn01.setOnClickListener(new OnClickListener() { @Override public vo ...
- (转载)Android开发——Android中常见的4种线程池(保证你能看懂并理解)
0.前言 转载请注明出处:http://blog.csdn.net/seu_calvin/article/details/52415337 使用线程池可以给我们带来很多好处,首先通过线程池中线程的重用 ...
随机推荐
- 戴文的Linux内核专题:07内核配置(3)
转自Linux中国 OK,我们还继续配置内核.还有更多功能等待着去配置. 下一个问题(Enable ELF core dumps (ELF_CORE))询问的是内核是否可以生成内核转储文件.这会使内核 ...
- [转]source inslght使用指导
作为一个开放源代码的操作系统,Linux附带的源代码库使得广大爱好者有了一个广泛学习.深入钻研的机会,特别是Linux内核的组织极为复杂,同时,又不能像windows平台的程序一样,可以使用集成开发环 ...
- Java 多线程间的通讯
在前一小节,介绍了在多线程编程中使用同步机制的重要性,并学会了如何实现同步的方法来正确地访问共享资源.这些线程之间的关系是平等的,彼此之间并不存在任何依赖,它们各自竞争CPU资源,互不相让,并且还无条 ...
- == 和 isEqualToString的区别之备忘
== 比较的是指针 isEqualToString 比较的是指针指向的内容 比如: NSString * strA = @"abc"; NSString * strB = @&qu ...
- 第四课 Gallery的使用
直接上代码 1.Layout--Main.axml <?xml version="1.0" encoding="utf-8"?> <Linea ...
- MySQL的高级查询
高级查询 1.连接查询(对列的扩展) 第一种形式select * from Info,Nation #会形成笛卡尔积 select * from Info,Nation where Info.Nati ...
- Tarjan算法求有向图的强连通分量
算法描述 tarjan算法思想:从一个点开始,进行深度优先遍历,同时记录到达该点的时间(dfn记录到达i点的时间),和该点能直接或间接到达的点中的最早的时间(low[i]记录这个值,其中low的初始值 ...
- .NET的语法优化
1.多参数 判断 条件 //判断 var fileKey = new { DateStart = search.DateStart.IsNull(), //关开始时间 DateEnd = search ...
- 学习笔记:js、css、html判断浏览器的各种版本
js.css.html判断浏览器的各种版本 (转载自:http://www.jb51.net/web/42244.html 版权归原作者所有) 利用正则表达式来判断ie浏览器版本 判断是否IE浏览器 ...
- 《单页Web应用--温故JavaScrpt》学习笔记整理
变量作用域,函数提升和执行环境对象 1. 变量作用域 在 JavaScript 中,变量 的 作用域 由 函数 限定,即:唯一能定义变量作用域的语块就是 函数. 变量 要么是全局的,要么是局部的. ...