介绍

The AlertDialog class allows you to build a variety of dialog designs and is often the only dialog class you’ll need. there are three regions of an alert dialog:



1.Title

This is optional and should be used only when the content area is occupied by a detailed message, a list, or custom layout. If you need to state a simple message or question (such as the dialog in figure 1), you don’t need a title.

2.Content area

This can display a message, a list, or other custom layout.

3.Action buttons

There should be no more than three action buttons in a dialog.

一般的AlertDialog分为2个部分,头部,内容和Action Button,头部包含图标和文字,内容部分可以自定义,也可以使用一些常见的列表,单选项,多选项等内容,Action Button就是常见的OK啊, Cancel啊等等。


类结构

AlertDialog

重点关注一下Builder类的结构

关于这些方法的使用说明,这里不做一一介绍,后面通过实例可以看出端倪,不过可以通过查阅API文档熟悉一下,AlertDialog.Builder


实际使用

Simple AlertDialog

代码使用

    private void showSimpleAlertDialog() {
//创建alertdialog builder
AlertDialog.Builder builder = new AlertDialog.Builder(mContext);
//设置图标,标题,消息内容
builder.setIcon(getResources().getDrawable(R.drawable.ic_adb_black_24dp))
.setTitle(R.string.title)
.setMessage(R.string.content);
//设置Acton Buttons
builder.setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
Toast.makeText(mContext, "Cancal is clicked", Toast.LENGTH_SHORT).show();
}
}); builder.setPositiveButton(R.string.ok, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
Toast.makeText(mContext, "OK is clicked", Toast.LENGTH_SHORT).show();
}
}); builder.setNeutralButton(R.string.reminder, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
Toast.makeText(mContext, "Remind me later is clicked", Toast.LENGTH_SHORT).show();
}
});
//显示alert dialog 这个是AlertDialog的show()方法是等价的
builder.show();
}

效果

备注

Action Button 意义
setNegativeButton 做取消、返回等操作,如Cancel
setPositiveButton 做确认、提交等操作,如OK
setNeutralButton 做中性操作,如Update Later

AlertDialog.Builder中的show()方法和AlertDialog的show()方法是等价的


AlertDialog With Array

代码使用

    public void showAlertDialogWithArray() {
AlertDialog.Builder builder = new AlertDialog.Builder(mContext);
builder.setIcon(getResources().getDrawable(R.drawable.ic_assessment_black_24dp))
.setTitle(R.string.title)
.setItems(R.array.dialoglist, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
switch (i) {
case 0:
showTwo.setBackgroundResource(R.color.pink);
break;
case 1:
showTwo.setBackgroundResource(R.color.stone);
break;
case 2:
showTwo.setBackgroundResource(R.color.yellow);
break;
}
}
});
builder.create().show();
}

效果

备注

方法
setItems 通过array来设置dialog的内容
setAdapter 通过ListAdapter来设置dialog的内容

ListAdapter可以显示的内容应该比Array要丰富,但是现在开源库很多,针对Dialog的美观的开源库也不少,一般开发过程中会使用现成的。


AlertDialog With MultiChoice

代码使用

    public void showAlertDialogWithMutiChoice() {
final ArrayList<String> selecteditems = new ArrayList<>();
AlertDialog.Builder builder = new AlertDialog.Builder(mContext);
builder.setIcon(R.drawable.ic_event_seat_black_24dp)
.setTitle(R.string.title)
.setMultiChoiceItems(R.array.fruits, null,
new DialogInterface.OnMultiChoiceClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int which,
boolean isChecked) {
if (isChecked) {
selecteditems.add(getResources()
.getStringArray(R.array.fruits)[which]);
Toast.makeText(mContext, selecteditems.toString(), Toast.LENGTH_SHORT).show();
} else {
selecteditems.remove(getResources()
.getStringArray(R.array.fruits)[which]);
Toast.makeText(mContext, selecteditems.toString(), Toast.LENGTH_SHORT).show();
}
}
});
builder.create().show();
}

效果


AlertDialog With Single Choice

代码使用

    public void showAlertDialogWithSingleChoice() {
AlertDialog.Builder builder = new AlertDialog.Builder(mContext);
builder.setIcon(R.drawable.ic_build_black_24dp)
.setTitle(R.string.title);
builder.setSingleChoiceItems(R.array.places, -1,
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
Toast.makeText(mContext,
getResources().getStringArray(R.array.places)[i] + " is selected",
Toast.LENGTH_SHORT).show();
}
});
builder.create().show();
}

效果


Custom Alert Dialog

代码使用

    public void showCustomAlertDialog() {
AlertDialog.Builder builder = new AlertDialog.Builder(mContext);
builder.setIcon(R.drawable.ic_assessment_black_24dp).setTitle(R.string.login);
builder.setView(R.layout.custom_alert);
builder.setCustomTitle(LayoutInflater.from(mContext).inflate(R.layout.custom_title , null ));
builder.create().show();
}

自定义布局文件

Title自定义

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="60dp"
android:background="@drawable/shape_title"
android:orientation="horizontal"> <ImageView
android:layout_width="60dp"
android:layout_height="60dp"
android:paddingLeft="20dp"
android:src="@drawable/ic_adb_black_24dp" /> <TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginLeft="40dp"
android:text="Custom Title"
android:textSize="15pt"
android:textStyle="bold" /> </LinearLayout>

Content Area自定义

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="@dimen/activity_horizontal_margin"
android:orientation="vertical"> <android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"> <EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="UserName" />
</android.support.design.widget.TextInputLayout> <android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:counterEnabled="true"
app:counterMaxLength="40"> <EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:hint="Password"
android:inputType="textPassword" />
</android.support.design.widget.TextInputLayout> <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/activity_vertical_margin"
android:orientation="horizontal"> <Button
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/shaperect"
android:text="Submit" /> <Button
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/shape_two"
android:text="Reset" />
</LinearLayout> </LinearLayout>

效果

备注

自定义标题栏和显示的内容,Action Button可以通过在Content中添加Button的方式来实现,丰富了Alert Dialog的显示内容,Alert Dialog中应该还有很多东西待挖掘,锄头需要挥起来~

<Android 基础(十五)> Alert Dialog的更多相关文章

  1. Bootstrap<基础十五> 输入框组

    Bootstrap 支持的另一个特性,输入框组.输入框组扩展自 表单控件.使用输入框组,可以很容易地向基于文本的输入框添加作为前缀和后缀的文本或按钮. 通过向输入域添加前缀和后缀的内容,您可以向用户输 ...

  2. android基础(五)网络数据解析方法

    在网络上传输数据时最常用的方法有两种:XML和JSON,下面就对这两种类型的数据解析进行讲解. 一.XML数据解析 在Android中,常见的XML解析器分别为SAX解析器.DOM解析器和PULL解析 ...

  3. android基础(五)网络编程

    android 的网络编程一般可以分为两种:基于Socket的,基于Http的. 一.socket与Http socket封装了TCP/IP协议,TPC/IP协议是传输层协议,主要解决数据如何在网络中 ...

  4. Android入门(十五)通知

    原文链接:http://www.orlion.ga/663/ 1.通知的基本用法 创建通知的步骤,首先需要一个NotificationManager来对通知进行管理,可以调用Context的getSy ...

  5. Android进阶(十五)socket通信——聊天室

    想做一个聊天室,花费了将近一天的时间,各种错误.讲解知识点之前,絮叨几句:动手能力还是很重要的,有时看似简单的一个问题,当你真正着手去解决的时候就有可能会遇到各种各样的问题,原因之一就是因为你的知识储 ...

  6. java基础(十五)----- Java 最全异常详解 ——Java高级开发必须懂的

    本文将详解java中的异常和异常处理机制 异常简介 什么是异常? 程序运行时,发生的不被期望的事件,它阻止了程序按照程序员的预期正常执行,这就是异常. Java异常的分类和类结构图 1.Java中的所 ...

  7. <Android 基础(五)> MVVM

    介绍 MVVM,Model-View-ViewModel,与上次讲的MVP模式比较的类似,MVP中需要大量的接口文件,而MVVM模式下,View和ViewModel直接关联,使用上比较方便,简化了代码 ...

  8. python 基础(十五) socket编程

    SOCKET TCP协议: 有请求 有响应 称之为 tcp协议 是面向连接的协议 就是在收发数据之前 必须先要建立一个可靠的链接 三次握手 如:网站 UDP协议: 是一个非链接的协议 传输之前不需要键 ...

  9. WDA基础十五:POPUP WINDOW

    1.组件控制器定义属性: 2.实现popup方法: METHOD stock_popup . DATA: l_cmp_api TYPE REF TO if_wd_component, l_window ...

  10. 安卓Android基础第五天

    使用HttpUrlConnection方式提交到服务器2 Get方式:组拼url地址把数据组拼到url上,有大小限制1kb(浏览器)或4kb(http协议) Post方式:post方式提交安全,没有大 ...

随机推荐

  1. 一些意想不到的小bug。

    一,当if的时候,很容易忘记相对的else,从而出现bug,要将背面消息考虑全面. 二,多个元素在同一行布局的时候,要考虑文字的换行还是省略号代替. 例如:左边一个文字,宽度不固定,右边一个图形,宽度 ...

  2. atcoder 2579

    You are taking a computer-based examination. The examination consists of N questions, and the score ...

  3. asp.net mvc 中的 controller和asp.net web api 的apicontroller有什么区别?(转)

    本质上区别不大,一个返回html/text类型的response,一个返回json/text或者xml/text类型的response,对于api环境而言,apicontroller更智能一点,他可以 ...

  4. List<T>中 GetRange (int index, int count)的使用

    GetRange:在源 List<T> 中创建元素范围的浅表复制. ; ) { List<T> uplist = new List<T>(); u++; <= ...

  5. vscode 注册表

    Windows Registry Editor Version 5.00 ; Open files [HKEY_CLASSES_ROOT\*\shell\Open with VS Code] @=&q ...

  6. POJ2676 (数独问题 + DLX + 状态优化顺序)

    (1)最简单的最是去暴力DFS搜索答案 , 很容易想到 , 每行每列的方式去搜索 , 不过效率是真的不行;但这个还是给出代码 ,毕竟打了也不容易呀! #include<cstdio> #i ...

  7. A. Free Cash

    A. Free Cash time limit per test 2 seconds memory limit per test 256 megabytes input standard input ...

  8. 一个基于QT简单登录对话框(带验证码功能)

    1. 对话框样式 2. 源代码 ①. main.cpp #include <QtGui/QApplication> #include "QLoginDialog.h" ...

  9. 1.1 Go安装与项目结构初始化

    软件安装安装包下载地址为:https://golang.org/dl/ 如果打不开可以: https://golang.google.cn/dl/ https://dl.google.com/go/g ...

  10. JS判断所有IE浏览器所有版本

    原来判断IE浏览器版本很简单,但是随着版本的升级,navigator.userAgent显示的信息也不一样:下图是IE11显示的信息