Android对话框AlertDialog-android学习之旅(四十二)

对话框简介

android提供了丰富的对话框支持,支持四种如下的对话框。

AlertDialog简介

介绍上面六个方法的代码示例

setMessage()

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="vertical"
    >

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="Large Text"
        android:id="@+id/text02" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="setMessage"
        android:id="@+id/button"
        android:onClick="dialog"/>
</LinearLayout>
package peng.liu.test;

import android.app.Activity;
import android.app.AlertDialog;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.TabActivity;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TabHost;
import android.widget.TextView;

public class MainActivity extends Activity {
    TextView text02;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        text02 = (TextView) findViewById(R.id.text02);
        Button setMessage = (Button) findViewById(R.id.button);
    }
    public void dialog(View view){
        AlertDialog.Builder builder = new AlertDialog.Builder(this).setIcon(R.drawable.ic_launcher)
                .setTitle("dialog")
                .setMessage("hello world");
        setPositiveButton(builder);
        setNegitiveButton(builder);
        builder.create().show();
    }
    public void setPositiveButton(AlertDialog.Builder builder){
        builder.setPositiveButton("确定",new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialogInterface, int i) {
                     text02.setText("单击了确定按钮");
            }
        });
    }
    public void setNegitiveButton(AlertDialog.Builder builder){
        builder.setNegativeButton("取消",new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialogInterface, int i) {
                text02.setText("单击了取消按钮");
            }
        });
    }
}

简单列表对话框setItems()

需要传入一个数组或者数组的资源id

package peng.liu.test;

import android.app.Activity;
import android.app.AlertDialog;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.TabActivity;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TabHost;
import android.widget.TextView;

public class MainActivity extends Activity {
    TextView text02;
    private String[] items = new String[]{
            "java","python","html","css"
    };
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        text02 = (TextView) findViewById(R.id.text02);
        Button setMessage = (Button) findViewById(R.id.button);
    }
    public void dialog(View view){
        AlertDialog.Builder builder = new AlertDialog.Builder(this).setIcon(R.drawable.ic_launcher)
                .setTitle("dialog")
                .setItems(items,new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialogInterface, int i) {
                        text02.setText(items[i]);
                    }
                });
        setPositiveButton(builder);
        setNegitiveButton(builder);
        builder.create().show();
    }
    public void setPositiveButton(AlertDialog.Builder builder){
        builder.setPositiveButton("确定",new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialogInterface, int i) {
                     text02.setText("单击了确定按钮");
            }
        });
    }
    public void setNegitiveButton(AlertDialog.Builder builder){
        builder.setNegativeButton("取消",new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialogInterface, int i) {
                text02.setText("单击了取消按钮");
            }
        });
    }
}

单选列表对话框setSingleChooseItems

参数是数组,sursor,或者ListAdapter。

package peng.liu.test;

import android.app.Activity;
import android.app.AlertDialog;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.TabActivity;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TabHost;
import android.widget.TextView;

public class MainActivity extends Activity {
    TextView text02;
    private String[] items = new String[]{
            "java","python","html","css"
    };
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        text02 = (TextView) findViewById(R.id.text02);
        Button setMessage = (Button) findViewById(R.id.button);
    }
    public void dialog(View view){
        AlertDialog.Builder builder = new AlertDialog.Builder(this).setIcon(R.drawable.ic_launcher)
                .setTitle("dialog")
                //1表示第二个框被选中
                .setSingleChoiceItems(items,1,new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialogInterface, int i) {
                        text02.setText(items[i]);
                    }
                });
        setPositiveButton(builder);
        setNegitiveButton(builder);
        builder.create().show();
    }
    public void setPositiveButton(AlertDialog.Builder builder){
        builder.setPositiveButton("确定",new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialogInterface, int i) {
                     text02.setText("单击了确定按钮");
            }
        });
    }
    public void setNegitiveButton(AlertDialog.Builder builder){
        builder.setNegativeButton("取消",new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialogInterface, int i) {
                text02.setText("单击了取消按钮");
            }
        });
    }
}

多选列表对话框 setMultiChooseItems

参数是数组或者cursor

package peng.liu.test;

import android.app.Activity;
import android.app.AlertDialog;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.TabActivity;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TabHost;
import android.widget.TextView;

public class MainActivity extends Activity {
    TextView text02;
    private String[] items = new String[]{
            "java","python","html","css"
    };
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        text02 = (TextView) findViewById(R.id.text02);
        Button setMessage = (Button) findViewById(R.id.button);
    }
    public void dialog(View view){
        AlertDialog.Builder builder = new AlertDialog.Builder(this).setIcon(R.drawable.ic_launcher)
                .setTitle("dialog")
                //布尔数组表示第二个和第四个被选中
                .setMultiChoiceItems(items,new boolean[]{false,true,false,true},null);
        setPositiveButton(builder);
        setNegitiveButton(builder);
        builder.create().show();
    }
    public void setPositiveButton(AlertDialog.Builder builder){
        builder.setPositiveButton("确定",new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialogInterface, int i) {
                     text02.setText("单击了确定按钮");
            }
        });
    }
    public void setNegitiveButton(AlertDialog.Builder builder){
        builder.setNegativeButton("取消",new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialogInterface, int i) {
                text02.setText("单击了取消按钮");
            }
        });
    }
}

自定义列表项对话框 setAdapter

参数是Adapter,该方法和setSingleChooseItems都可以接受Adapter作为参数。

package peng.liu.test;

import android.app.Activity;
import android.app.AlertDialog;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.TabActivity;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.TabHost;
import android.widget.TextView;

public class MainActivity extends Activity {
    TextView text02;
    private String[] items = new String[]{
            "java","python","html","css"
    };
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        text02 = (TextView) findViewById(R.id.text02);
        Button setMessage = (Button) findViewById(R.id.button);
    }
    public void dialog(View view){
        AlertDialog.Builder builder = new AlertDialog.Builder(this).setIcon(R.drawable.ic_launcher)
                .setTitle("dialog")
                //布尔数组表示第二个和第四个被选中
                .setAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1,items),null);
        setPositiveButton(builder);
        setNegitiveButton(builder);
        builder.create().show();
    }
    public void setPositiveButton(AlertDialog.Builder builder){
        builder.setPositiveButton("确定",new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialogInterface, int i) {
                     text02.setText("单击了确定按钮");
            }
        });
    }
    public void setNegitiveButton(AlertDialog.Builder builder){
        builder.setNegativeButton("取消",new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialogInterface, int i) {
                text02.setText("单击了取消按钮");
            }
        });
    }
}

自定义View对话框

自定义的任何的View组件

package peng.liu.test;

import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;

public class MainActivity extends Activity {
    TextView text02;
    private String[] items = new String[]{
            "java","python","html","css"
    };
    ImageView image;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        text02 = (TextView) findViewById(R.id.text02);
        Button setMessage = (Button) findViewById(R.id.button);
        image = new ImageView(this);
        image.setImageResource(R.drawable.ic_launcher);
        image.setScaleType(ImageView.ScaleType.FIT_XY);
        image.setLayoutParams(new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
    }
    public void dialog(View view){
        AlertDialog.Builder builder = new AlertDialog.Builder(this).setIcon(R.drawable.ic_launcher)
                .setTitle("dialog")
                //布尔数组表示第二个和第四个被选中
                .setView(image);
    }
    public void setPositiveButton(AlertDialog.Builder builder){
        builder.setPositiveButton("确定",new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialogInterface, int i) {
                     text02.setText("单击了确定按钮");
            }
        });
    }
    public void setNegitiveButton(AlertDialog.Builder builder){
        builder.setNegativeButton("取消",new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialogInterface, int i) {
                text02.setText("单击了取消按钮");
            }
        });
    }
}
时间: 2024-10-11 16:06:05

Android对话框AlertDialog-android学习之旅(四十二)的相关文章

Android四大组件之一Service介绍-android学习之旅(十二)

基本概念: service是android四大组件之一,运行在后台执行耗时操作,并不提供用户界面.其他组件如acticity可以通过startService启动该组件,也可以通过bindService启动并把绑定该组件进行通信. 使用场景 后台下载文件,以及播放音乐等 注意 service运行在主线程中,他不会创建属于自己的线程,也不是运行在独立的线程中,所以在使用的时候,需要自己创建线程,而不应该直接使用,这样会造成ANR错误. service的两种形式 started service 其他组

Android广播接收器Broadcast Receiver-android学习之旅(十二)

首先继承BroadcastReceiver类,并在manifest中注册 public class MyReceiver extends BroadcastReceiver { public MyReceiver() { } @Override public void onReceive(Context context, Intent intent) { throw new UnsupportedOperationException("Not yet implemented"); }

Dynamic CRM 2013学习笔记(四十二)流程5 - 实时/同步工作流(Workflow)用法图解

实时工作流跟插件一样,也是用事件执行管道来执行,能在pre,post或核心操作中执行.跟插件一样,不能在创建之前和删除之后执行.如果执行过程中有异常发生,会取消并回滚整个操作.实时工作流里所有的活动和子流程都是一个事务,不像异步工作流里,子流程是单独的一个事务.不能使用等待或并行等待条件步骤.如果执行成功,就看不到执行的log.实时工作流能被转到异步工作流,还能再转回实时工作流.下面详细介绍如何创建一个实时工作流.   一.创建实时工作流 1. 打开 Setting > Process, 点击N

Python学习之旅(十二)

Python基础知识(11):高级特性 一.分片(切片) 通过索引来获取一定范围内的元素 #字符串 s="Alice" s[0:4:2] 结果: 'Ai' #列表 l=[1,2,3,4,5,6] l[0:2] 结果: [1, 2] #元组 t=(1,2,3,"a","b","c") t[:] 结果: (1, 2, 3, 'a', 'b', 'c') 二.迭代 给定一个元组或列表,通过for循环遍历,这种遍历称为迭代 def t

Python学习笔记(四十二)第三方模块(PIL)图像处理

摘抄自:https://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000/0014320027235877860c87af5544f25a8deeb55141d60c5000 安装Pillow 在命令行下直接通过pip安装: $ pip install pillow 如果遇到Permission denied安装失败,请加上sudo重试. 操作图像 来看看最常见的图像缩放操作,只需三四行代码:

Linux学习总结(四十二)lnmp访问控制篇

1 nginx 配置防盗链 防盗链的原理我们在lamp中已经有介绍,这里不再重复,直接看配置过程.核心语句为 valid_referers none blocked server_names *.test.com ; if ($invalid_referer) { return 403; } 当然我们要将其放在location里面,结合之前的缓存有效期配置,就形成如下结构 location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 7d; //针对上

第四十二章

第四十二章1 道生“肾” 道生一,一生二,二生三,三生万物. 道生出混沌之气,混沌之气分出阴阳,阴阳又交汇出新的物质,从而生出万物. 道在我们身体内体现为“肾精”,要保护好.各位朋友大家好,今天我们接着来聊<道德经>.我们来看看老子带给我们什么样新的人生启发了,每天启发一点,天天进步.今天我们开始学习第四十二章,非常开心.因为我们<道德经>已经学习到一半的位置了,因为整个八十一章,我们学习到第四十二章了,过了一半了,这时间也是飞快的.我之前预计3年,我估计现在2年差不多讲完了.因为

Android项目实战(四十二):启动页优化,去除短暂白屏或黑屏

原文:Android项目实战(四十二):启动页优化,去除短暂白屏或黑屏 大家会发现一个空项目,从手机桌面打开app是秒启动.但是对于自己开发的项目,有时会发现打开app的时候,会有短暂的1秒--2秒的白屏或者黑屏,然后才进入到程序界面. 个人理解为我们自己实现的Application文件里面做了较多的初始化操作,当这些初始化操作完成后才进入到第一个Activity,这段初始化的时间因为没有界面,应用便会因为主题的类别而显示白屏或者黑屏. 构成白屏/黑屏的原因代码如下: /*** @author

【Unity 3D】学习笔记四十二:粒子特效

粒子特效 粒子特效的原理是将若干粒子无规则的组合在一起,来模拟火焰,爆炸,水滴,雾气等效果.要使用粒子特效首先要创建,在hierarchy视图中点击create--particle system即可 粒子发射器 粒子发射器是用于设定粒子的发射属性,比如说粒子的大小,数量和速度等.在创建完粒子对象后,在右侧inspector视图中便可以看到所有的粒子属性: emit:是否是使用粒子发射器. min size:粒子最小尺寸. max size:粒子最大尺寸. min energy:粒子的最小生命周期

Dynamic CRM 2013学习笔记(四十六)简单审批流的实现

前面介绍过自定义审批流: Dynamic CRM 2013学习笔记(十九)自定义审批流1 - 效果演示 Dynamic CRM 2013学习笔记(二十一)自定义审批流2 - 配置按钮 Dynamic CRM 2013学习笔记(三十二)自定义审批流3 - 节点及实体配置 Dynamic CRM 2013学习笔记(三十三)自定义审批流4 - 规则节点 -有分支的流程处理 Dynamic CRM 2013学习笔记(三十四)自定义审批流5 - 自动邮件通知 Dynamic CRM 2013学习笔记(三十