Android软件开发之盘点所有Dialog对话框大合集(一)

转:http://xys289187120.blog.51cto.com/3361352/657562/

雨松MOMO带大家盘点Android 中的对话框
今天我用自己写的一个Demo 和大家详细介绍一个Android中的对话框的使用技巧
。 
 
1.确定取消对话框

对话框中有2个按钮 通过调用 setPositiveButton 方法 和 setNegativeButton 方法 可以设置按钮的显示内容以及按钮的监听事件。 

 
我们使用AlerDialog 创建对话框 

  1. AlertDialog.Builder builder = new AlertDialog.Builder(MainDialog.this);  

使用builder设置对话框的title button icon 等等 

  1. builder.setIcon(R.drawable.icon);  
  2.        builder.setTitle("你确定要离开吗?");  
  3.        builder.setPositiveButton("确定", new DialogInterface.OnClickListener() {  
  4.            public void onClick(DialogInterface dialog, int whichButton) {  
  5.                //这里添加点击确定后的逻辑  
  6.                showDialog("你选择了确定");  
  7.            }  
  8.        });  
  9.        builder.setNegativeButton("取消", new DialogInterface.OnClickListener() {  
  10.            public void onClick(DialogInterface dialog, int whichButton) {  
  11.                //这里添加点击确定后的逻辑  
  12.                showDialog("你选择了取消");  
  13.            }  
  14.        });  
  15.        builder.create().show();  

这个dialog用于现实onClick后监听的内容信息 

  1. private void showDialog(String str) {  
  2. w AlertDialog.Builder(MainDialog.this)  
  3.      .setMessage(str)  
  4.      .show();  
2.多个按钮信息框
 
  1. AlertDialog.Builder builder = new AlertDialog.Builder(MainDialog.this);           
  2. builder.setIcon(R.drawable.icon);  
  3. builder.setTitle("投票");  
  4. builder.setMessage("您认为什么样的内容能吸引您?");  
  5. builder.setPositiveButton("有趣味的", new DialogInterface.OnClickListener() {  
  6.     public void onClick(DialogInterface dialog, int whichButton) {  
  7.         showDialog("你选择了有趣味的");  
  8.     }  
  9. });  
  10. builder.setNeutralButton("有思想的", new DialogInterface.OnClickListener() {  
  11.     public void onClick(DialogInterface dialog, int whichButton) {  
  12.         showDialog("你选择了有思想的");                      
  13.     }  
  14. });  
  15. builder.setNegativeButton("主题强的", new DialogInterface.OnClickListener() {  
  16.     public void onClick(DialogInterface dialog, int whichButton) {  
  17.         showDialog("你选择了主题强的");    
  18.     }  
  19. });  
  20. builder.create().show(); 
3.列表框
这个数组用于列表选择
 
  1. final String[] mItems = {"item0","item1","itme2","item3","itme4","item5","item6"}; 
  1. AlertDialog.Builder builder = new AlertDialog.Builder(MainDialog.this);   
  2.         builder.setTitle("列表选择框");  
  3.         builder.setItems(mItems, new DialogInterface.OnClickListener() {  
  4.             public void onClick(DialogInterface dialog, int which) {  
  5.                 //点击后弹出窗口选择了第几项  
  6.                 showDialog("你选择的id为" + which + " , " + mItems[which]);  
  7.             }  
  8.         });  
  9.         builder.create().show();  

4.单项选择列表框
 

mSingleChoice 用于记录单选中的ID
  1. int mSingleChoiceID = -1; 
  1. AlertDialog.Builder builder = new AlertDialog.Builder(MainDialog.this);   
  2.  
  3. mSingleChoiceID = -1;  
  4. builder.setIcon(R.drawable.icon);  
  5.     builder.setTitle("单项选择");  
  6.     builder.setSingleChoiceItems(mItems, 0, new DialogInterface.OnClickListener() {  
  7.         public void onClick(DialogInterface dialog, int whichButton) {  
  8.                 mSingleChoiceID = whichButton;  
  9.                 showDialog("你选择的id为" + whichButton + " , " + mItems[whichButton]);  
  10.         }  
  11.     });  
  12.     builder.setPositiveButton("确定", new DialogInterface.OnClickListener() {  
  13.         public void onClick(DialogInterface dialog, int whichButton) {  
  14.             if(mSingleChoiceID > 0) {  
  15.             showDialog("你选择的是" + mSingleChoiceID);  
  16.             }  
  17.         }  
  18.     });  
  19.     builder.setNegativeButton("取消", new DialogInterface.OnClickListener() {  
  20.         public void onClick(DialogInterface dialog, int whichButton) {  
  21.  
  22.         }  
  23.     });  
  24.    builder.create().show(); 
5.进度条框

点击进度条框按钮后 开启一个线程计算读取的进度 假设读取结束为 100
Progress在小于100的时候一直在线程中做循环++ 只到读取结束后,停止线程。
  1.           mProgressDialog = new ProgressDialog(MainDialog.this);  
  2.      mProgressDialog.setIcon(R.drawable.icon);  
  3.      mProgressDialog.setTitle("进度条窗口");  
  4.      mProgressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);  
  5.      mProgressDialog.setMax(MAX_PROGRESS);  
  6.      mProgressDialog.setButton("确定", new DialogInterface.OnClickListener() {  
  7.          public void onClick(DialogInterface dialog, int whichButton) {  
  8.              //这里添加点击后的逻辑  
  9.          }  
  10.      });  
  11.      mProgressDialog.setButton2("取消", new DialogInterface.OnClickListener() {  
  12.          public void onClick(DialogInterface dialog, int whichButton) {  
  13.              //这里添加点击后的逻辑  
  14.          }  
  15.      });  
  16.      mProgressDialog.show();  
  17.      new Thread(this).start();  
  18.  
  19. ic void run() {  
  20. int Progress = 0;  
  21. while(Progress < MAX_PROGRESS) {  
  22. try {  
  23.     Thread.sleep(100);  
  24.     Progress++;    
  25.     mProgressDialog.incrementProgressBy(1);  
  26. } catch (InterruptedException e) {  
  27.     // TODO Auto-generated catch block  
  28.     e.printStackTrace();  
  29. }  
  30.    
  31. }  
6.多项选择列表框
 

MultiChoiceID 用于记录多选选中的id号 存在ArrayList中
选中后 add 进
ArrayList
取消选中后 remove 出ArrayList


  1. ArrayList <Integer>MultiChoiceID = new ArrayList <Integer>(); 
  1. AlertDialog.Builder builder = new AlertDialog.Builder(MainDialog.this);   
  2.  
  3. MultiChoiceID.clear();  
  4. builder.setIcon(R.drawable.icon);  
  5.     builder.setTitle("多项选择");  
  6.     builder.setMultiChoiceItems(mItems,  
  7.             new boolean[]{false, false, false, false, false, false, false},  
  8.             new DialogInterface.OnMultiChoiceClickListener() {  
  9.                 public void onClick(DialogInterface dialog, int whichButton,  
  10.                         boolean isChecked) {  
  11.                    if(isChecked) {  
  12.                        MultiChoiceID.add(whichButton);  
  13.                        showDialog("你选择的id为" + whichButton + " , " + mItems[whichButton]);  
  14.                    }else {  
  15.                        MultiChoiceID.remove(whichButton);  
  16.                    }  
  17.                       
  18.                 }  
  19.             });  
  20.     builder.setPositiveButton("确定", new DialogInterface.OnClickListener() {  
  21.         public void onClick(DialogInterface dialog, int whichButton) {  
  22.             String str = "";  
  23.             int size = MultiChoiceID.size();  
  24.             for (int i = 0 ;i < size; i++) {  
  25.             str+= mItems[MultiChoiceID.get(i)] + ", ";  
  26.             }  
  27.             showDialog("你选择的是" + str);  
  28.         }  
  29.     });  
  30.     builder.setNegativeButton("取消", new DialogInterface.OnClickListener() {  
  31.         public void onClick(DialogInterface dialog, int whichButton) {  
  32.  
  33.         }  
  34.     });  
  35.    builder.create().show(); 
7.自定义布局
讲到自定义布局我就得多说一说了,为什么要多说一说呢? 
其实自定义布局在Android的开发中非常重要 因为它能让开发者做出自己五彩缤纷的Activity 而不用去使用系统枯燥的界面。
自定义dialog有什么好处?
比如我们在开发过长当中 要通过介绍系统发送的一个广播弹出一个dialog . 但是dialog必需是基于activity才能呈现出来 如果没有activity 的话 程序就会崩溃。所以我们可以写一个自定义的 dialog 把它定义成一个activity
这样我们收到一条打开dialog的广播后 直接启动这个 activity 程序正常运行~~ 
这就是自定义dialog的好处。
注明:下面这个例子只是写了自定义dialog 没有把它单独的写在一个activity中 如果须要的话 可以自己改一下。
  1. AlertDialog.Builder builder = new AlertDialog.Builder(MainDialog.this);   
  2.  LayoutInflater factory = LayoutInflater.from(this);  
  3.  final View textEntryView = factory.inflate(R.layout.test, null);  
  4.      builder.setIcon(R.drawable.icon);  
  5.      builder.setTitle("自定义输入框");  
  6.      builder.setView(textEntryView);  
  7.      builder.setPositiveButton("确定", new DialogInterface.OnClickListener() {  
  8.          public void onClick(DialogInterface dialog, int whichButton) {  
  9.            
  10.          EditText userName = (EditText) textEntryView.findViewById(R.id.etUserName);  
  11.          EditText password = (EditText) textEntryView.findViewById(R.id.etPassWord);  
  12.          showDialog("姓名 :"  + userName.getText().toString()  + "密码:" + password.getText().toString() );  
  13.          }  
  14.      });  
  15.      builder.setNegativeButton("取消", new DialogInterface.OnClickListener() {  
  16.          public void onClick(DialogInterface dialog, int whichButton) {  
  17.  
  18.          }  
  19.      });  
  20.    builder.create().show(); 
  1. <span style="color:#000000;"><?xml version="1.0" encoding="utf-8"?> 
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  3. android:layout_height="wrap_content"   
  4. android:layout_width="wrap_content" 
  5. android:orientation="horizontal" 
  6. android:id="@+id/dialog"> 
  7. <LinearLayout 
  8. android:layout_height="wrap_content"   
  9. android:layout_width="wrap_content" 
  10. android:orientation="horizontal" 
  11. android:id="@+id/dialogname"> 
  12.  
  13. <TextView android:layout_height="wrap_content" 
  14.    android:layout_width="wrap_content" 
  15.   android:id="@+id/tvUserName"   
  16.   android:text="姓名:" /> 
  17. <EditText android:layout_height="wrap_content" 
  18.   android:layout_width="wrap_content"   
  19.   android:id="@+id/etUserName"   
  20.   android:minWidth="200dip"/> 
  21. </LinearLayout>    
  22. <LinearLayout 
  23. android:layout_height="wrap_content"   
  24. android:layout_width="wrap_content" 
  25. android:orientation="horizontal" 
  26. android:id="@+id/dialognum" 
  27.  android:layout_below="@+id/dialogname" 
  28. > 
  29.   <TextView android:layout_height="wrap_content" 
  30.    android:layout_width="wrap_content" 
  31.   android:id="@+id/tvPassWord"   
  32.   android:text="密码:" /> 
  33. <EditText android:layout_height="wrap_content" 
  34.   android:layout_width="wrap_content"   
  35.   android:id="@+id/etPassWord"   
  36.   android:minWidth="200dip"/> 
  37.  </LinearLayout>    
  38.   </RelativeLayout></span> 

8.读取进度框
显示一个正在转圈的进度条loading

  1. mProgressDialog = new ProgressDialog(this);  
  2.  mProgressDialog.setTitle("读取ing");  
  3.  mProgressDialog.setMessage("正在读取中请稍候");  
  4.  mProgressDialog.setIndeterminate(true);  
  5.  mProgressDialog.setCancelable(true);  
  6.  mProgressDialog.show(); 

最后如果你还是觉得我写的不够详细 不要紧我把源代码的下载地址贴出来 欢迎大家一起讨论学习 雨松MOMO希望可以和大家一起进步。
下载地址
http://download.csdn.net/source/3438085

本文出自 “雨松MOMO的程序世界” 博客,请务必保留此出处http://xys289187120.blog.51cto.com/3361352/657562

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/544933.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

PHP将数组存入数据库中的四种方式

PHP将数组存入数据库中的四种方式 最近突然遇到了一个问题&#xff0c;如何用PHP将数组存入到数据库中&#xff0c;经过自己的多方查找和研究&#xff0c;总结了以下四种方法&#xff1a;1.implode()和explode()方式2.print_r()和自定义函数方式3.serialize()和unserialize()方…

Android开发:利用Activity的Dialog风格完成弹出框设计

转&#xff1a;http://www.linuxidc.com/Linux/2011-08/41933.htm 在我们使用Dialog时&#xff0c;如果需要用到很多自己设计的控件&#xff0c;虽然可以让弹出框显示出我们需要的界面&#xff0c;但却无法找到地方完成控制代码的编写&#xff0c;如何解决这个问题呢,我们可以将…

Java中实现定时任务的3种方法!

今天我们不用任何框架&#xff0c;用最朴素的 Java API 来实现定时任务&#xff0c;本文会介绍 3 种实现方案&#xff0c;我们一起来看...1、 sleep 这也是我们最常用的 sleep 休眠大法&#xff0c;不只是当作休眠用&#xff0c;我们还可以利用它很轻松的能实现一个简单的定时任…

回文子序列_计算回文子序列的总数

回文子序列Problem statement: 问题陈述&#xff1a; Given a string str, find total number of possible palindromic sub-sequences. A sub-sequence does not need to be consecutive, but for any xixj i<j must be valid in the parent string too. Like "icl&q…

Zookeeper 的 5 大核心知识点!

1 ZooKeeper简介ZooKeeper 是一个开源的分布式协调框架&#xff0c;它的定位是为分布式应用提供一致性服务&#xff0c;是整个大数据体系的管理员。ZooKeeper 会封装好复杂易出错的关键服务&#xff0c;将高效、稳定、易用的服务提供给用户使用。如果上面的官方言语你不太理解&…

【视频版】最新版Swagger 3升级指南和新功能体验!

作者 | 王磊来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;Swagger 3.0 发布已经有一段时间了&#xff0c;它于 2020.7 月 发布&#xff0c;但目前市面上使用的主流版本还是 Swagger 2…

各大厂面试高频的面试题新鲜出炉,你能答上几道?

关于生产环境如何配置线程数&#xff0c;还是要根据业务来进行区分&#xff0c;我们时常会听到什么IO密集型、CPU密集型任务...那么这里提一个问题&#xff1a;大家知道什么样的任务或者代码会被认定为IO/CPU密集&#xff1f;又是用什么样的标准来认定IO/CPU密集&#xff1f;如…

c/c++如何获取数组的长度

2019独角兽企业重金招聘Python工程师标准>>> C、C中没有提供 直接获取数组长度的函数&#xff0c;对于存放字符串的字符数组提供了一个strlen函数获取长度&#xff0c;那么对于其他类型的数组如何获取他们的长度呢&#xff1f;其中一种方法是使 用sizeof(array) / s…

【送给读者】全新苹果 AirPods,包邮送一套!

为回馈长期以来科创人读者对本栏目的关注支持&#xff0c;本周小编联合了计算机领域八位高质量原创号主一起为大家送出一套 全新苹果AirPods 2代。以下推荐的公号原创率都很高&#xff0c;均为个人IP号&#xff0c;有些小伙伴应该已经关注部分公号。本次抽奖采用第三方抽奖小程…

进程控制(kill)

为什么80%的码农都做不了架构师&#xff1f;>>> kill&#xff1a;终止进程&#xff08;或传送信号到某进程&#xff09; kill [options] [process_ids] kill命令可以发送信号给进程&#xff0c;可以终止&#xff08;terminate&#xff09;&#xff08;默认操作&a…

Swagger增强神器:Knife4j!用它轻松实现接口搜索、Word下载、接口过滤...

视频版内容&#xff1a;Swagger 是开发中最常用的框架之一了&#xff0c;但 Swagger 本身又有很多不完善的地方&#xff0c;比如&#xff0c;在众多的接口中查询某一个接口&#xff0c;又或者是把所有的接口导出成 Word 格式等&#xff0c;都无法在 Swagger 中实现。有人可能会…

7种可能会导致内存泄漏的场景!

虽然Java程序员不用像C/C程序员那样时刻关注内存的使用情况&#xff0c;JVM会帮我们处理好这些&#xff0c;但并不是说有了GC就可以高枕无忧&#xff0c;内存泄露相关的问题一般在测试的时候很难发现&#xff0c;一旦上线流量起来可能马上就是一个诡异的线上故障。1. 内存泄露的…

logstash 过虑nginx访问日志

标题是不是可以翻译成这样&#xff1a;logstash Filters nginx access log好了&#xff0c;进入正题&#xff0c;日志管理服务器我用ElasticSearchLogStashKibanaRedis先说下我的架构&#xff1a;远程NGINX采集日志数据到REDISlogstashelasticsearchkibana服务器至于怎么部署&a…

Spring中的重试功能!嗯,有点东西

来源&#xff1a;https://albenw.github.io/posts/69a9647f/概要Spring实现了一套重试机制&#xff0c;功能简单实用。Spring Retry是从Spring Batch独立出来的一个功能&#xff0c;已经广泛应用于Spring Batch,Spring Integration, Spring for Apache Hadoop等Spring项目。 本…

关于Shell的一些常用命令

2019独角兽企业重金招聘Python工程师标准>>> ls -lat 列出当前目录所有东东的东东 ls -lath 人看的大小 ls -F | grep "/$"只搞目录 ls -lR 包括子目录… ls --ignore filename -lt 忽略某个 which&#xff0c;在PATH变量指定的路径中&#xff0c;搜索看某…

用Netty撸一个心跳机制和断线重连!

来源&#xff1a;www.jianshu.com/p/1a28e48edd92心跳机制何为心跳所谓心跳, 即在 TCP 长连接中, 客户端和服务器之间定期发送的一种特殊的数据包, 通知对方自己还在线, 以确保 TCP 连接的有效性.注&#xff1a;心跳包还有另一个作用&#xff0c;经常被忽略&#xff0c;即&…

ThreadLocal线程范围内的共享变量

模拟ThreadLocal类实现&#xff1a;线程范围内的共享变量&#xff0c;每个线程只能访问他自己的&#xff0c;不能访问别的线程。 package com.ljq.test.thread;import java.util.HashMap; import java.util.Map; import java.util.Random;/*** 线程范围内的共享变量* * 三个模块…

Java中操作Excel的3种方法,太好用了!

一、介绍在平时的业务系统开发中&#xff0c;少不了需要用到导出、导入excel功能&#xff0c;今天我们就一起来总结一下&#xff0c;如果你正为此需求感到困惑&#xff0c;那么阅读完本文&#xff0c;你一定会有所收获&#xff01;二、poi大概在很久很久以前&#xff0c;微软的…

代理服务器Tengine的研究与测试

代理服务器Tengine的研究与测试一、Tengine介绍1.首先要知道什么Nginx1)Nginx&#xff08;发音同 engine x&#xff09;是一款轻量级的Web 服务器&#xff0f;反向代理服务器及电子邮件&#xff08;IMAP/POP3&#xff09;代理服务器&#xff0c;并在一个BSD-like 协议下发行。由…

不错!SpringBoot发布Jar包优化瘦身指南!

概要说明随着Spring Boot的流行&#xff0c;大家体验到只需构建输出一个jar文件&#xff0c;然后只需一个java -jar命令就能部署运行应用的爽快。常见一些单体应用随着项目规模的扩展单个jar文件的大小越来越大&#xff0c;动辄两三百MB。如果再引入微服务架构&#xff0c;动辄…