Android UI设计之AlertDialog弹窗控件
程序员文章站
2024-03-07 17:17:15
有关android的弹窗界面相信大家见过不少了,手机上很多应用软件都涉及到弹窗控件,比如典型的每次删除一个图片或者卸载一个等都会弹出一个窗口询问是否删除/卸载等,还有我们系...
有关android的弹窗界面相信大家见过不少了,手机上很多应用软件都涉及到弹窗控件,比如典型的每次删除一个图片或者卸载一个等都会弹出一个窗口询问是否删除/卸载等,还有我们系统的设置时间/日期等,都用到了这样的控件,下面我将通过代码来总结下常用的几个弹窗控件
activity_main.xml
<?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" tools:context="com.company.alertdialog.mainactivity"> <button android:id="@+id/btn1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onclick="onclick" android:text="列表弹窗" /> <button android:id="@+id/btn2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onclick="onclick" android:text="单选弹窗" /> <button android:id="@+id/btn3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onclick="onclick" android:text="多选弹窗" /> <button android:id="@+id/btn4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onclick="onclick" android:text="日期弹窗" /> <button android:id="@+id/btn5" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onclick="onclick" android:text="时间弹窗" /> <button android:id="@+id/btn6" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onclick="onclick" android:text="进度条弹窗" /> </linearlayout>
strings.xml
<resources> <string name="app_name">alertdialog</string> <string-array name="list"> <item>列表一</item> <item>列表二</item> <item>列表三</item> <item>列表四</item> <item>列表五</item> <item>列表六</item> </string-array> </resources>
mainactivity.java
public class mainactivity extends appcompatactivity implements view.onclicklistener { //表示列表弹窗 private button mbtn1; //表示单选弹窗 private button mbtn2; //表示多选弹窗 private button mbtn3; //表示日期弹窗 private button mbtn4; //表示时间弹窗 private button mbtn5; //表示进度条弹窗 private button mbtn6; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); init(); event(); } /** * 设置监听事件 */ private void event() { mbtn1.setonclicklistener(this); mbtn2.setonclicklistener(this); mbtn3.setonclicklistener(this); mbtn4.setonclicklistener(this); mbtn5.setonclicklistener(this); mbtn6.setonclicklistener(this); } /** * 初始化控件 */ private void init() { mbtn1 = (button) findviewbyid(r.id.btn1); mbtn2 = (button) findviewbyid(r.id.btn2); mbtn3 = (button) findviewbyid(r.id.btn3); mbtn4 = (button) findviewbyid(r.id.btn4); mbtn5 = (button) findviewbyid(r.id.btn5); mbtn6 = (button) findviewbyid(r.id.btn6); } @override public void onclick(view v) { switch (v.getid()) { case r.id.btn1: createlistdialog(); break; case r.id.btn2: createsingledialog(); break; case r.id.btn3: createmutildialog(); break; case r.id.btn4: createdatedialog(); break; case r.id.btn5: createtimedialog(); break; case r.id.btn6: createprogressbardialog(); break; } } /** * 创建一个进度条弹窗 */ private void createprogressbardialog() { //创建进度条弹窗对象 progressdialog progressdialog = new progressdialog(this); //设置标题 progressdialog.settitle("进度条弹窗"); //设置标题图标 progressdialog.seticon(r.mipmap.ic_launcher); //设置文本 progressdialog.setmessage("正在加载..."); //设置最大进度 progressdialog.setmax(100); //设置进度条的类型 progressdialog.setprogressstyle(progressdialog.style_horizontal); //显示进度条弹窗 progressdialog.show(); //如果设置这条语句的话,那么无论你点击屏幕外的任何地方或者按返回键都取消不了这个弹窗, //除非在完成进度后,设置取消事件。一般情况这种设置方式对界面很不友好 //不过有时候软件有重大bug,用户不得不更新该软件,如果不更新,就只能 //强制退出程序了 // progressdialog.setcancelable(false);//不允许被某些方式取消,比如按对话框之外的区域或者是返回键 progressdialog.setprogress(50); } /** * 创建一个日期弹窗 */ private void createdatedialog() { new datepickerdialog(this, new datepickerdialog.ondatesetlistener() { /** * * @param view 当前日期选择的 view * @param year 当前选择的年 * @param monthofyear 当前选择的月,从0开始算 * @param dayofmonth,当前选择的日,从1开始算 */ @override public void ondateset(datepicker view, int year, int monthofyear, int dayofmonth) { toast.maketext(mainactivity.this, "view = " + view + "年:" + year + "月:" + monthofyear + "日" + dayofmonth, toast.length_short).show(); } }, 2016, 7, 15)//这里注意一下的是月份系统表示的是从0开始的,0表示1月,1表示2月.....11表示12月 .show(); } /** * 创建一个时间弹窗 */ private void createtimedialog() { new timepickerdialog(this, new timepickerdialog.ontimesetlistener() { /** * * @param view 当前时间选择的view * @param hourofday 小时 * @param minute 分钟 */ @override public void ontimeset(timepicker view, int hourofday, int minute) { toast.maketext(mainactivity.this, "时间弹窗 view = " + view + "hourofday = " + hourofday + "minute = " + minute, toast.length_short).show(); } }, 11, 22, true) .show(); } /** * 创建一个多选弹窗 */ private void createmutildialog() { new alertdialog.builder(this) .settitle("多选弹框") .seticon(r.mipmap.ic_launcher) //第二个参数 boolean数组, 如果写 null 代表默认全部是非选中, 如果想指定某几个选中, //需要创建对应长度的数据,按照位置的顺序,将指定位置设置为 true 即可, 数组长度不能小 //于数据源的长度,否则会越界,但是可以大于数据源的长度 .setmultichoiceitems(r.array.list, new boolean[]{true, false, false, true, false, false, false, false, false, false, false, false, false}, new dialoginterface.onmultichoiceclicklistener() { /** * * @param dialog 当前点击的对话框 * @param which 当前点击的条目 * @param ischecked 被点击条目的选中状态 */ @override public void onclick(dialoginterface dialog, int which, boolean ischecked) { toast.maketext(mainactivity.this, "当前点击的是" + which + " 是否选中" + ischecked, toast.length_short).show(); } }) //设置取消按钮,并且设置监听事件 .setnegativebutton("cancel", new dialoginterface.onclicklistener() { @override public void onclick(dialoginterface dialog, int which) { dialog.dismiss(); } }) //确认按钮,默认点击会直接取消该窗口 .setpositivebutton("sure", new dialoginterface.onclicklistener() { @override public void onclick(dialoginterface dialog, int which) { } }) .setcancelable(false) .show(); } /** * 创建一个单选弹窗 */ private void createsingledialog() { new alertdialog.builder(this) .settitle("单选弹窗") .seticon(r.mipmap.ic_launcher) //构造参数, 1 数据源,2 默认被选中的索引,3 条目的点击事件 .setsinglechoiceitems(r.array.list, 1, new dialoginterface.onclicklistener() { /** * * @param dialog 当前的对话框 * @param which 当前点击的是列表的第几个 item */ @override public void onclick(dialoginterface dialog, int which) { toast.maketext(mainactivity.this, "单选弹窗 dialog = " + dialog + "which = " + which, toast.length_short).show(); } }) .setnegativebutton("cancel", new dialoginterface.onclicklistener() { @override public void onclick(dialoginterface dialog, int which) { dialog.dismiss(); } }) .setpositivebutton("sure", new dialoginterface.onclicklistener() { @override public void onclick(dialoginterface dialog, int which) { } }) .setcancelable(false)//不允许被某些方式取消,比如按对话框之外的区域或者是返回键 .show(); } /** * 创建一个列表弹窗 */ private void createlistdialog() { alertdialog.builder builder = new alertdialog.builder(this); builder.settitle("列表弹窗"); builder.setitems(r.array.list, new dialoginterface.onclicklistener() { /** * * @param dialog 当前的对话框 * @param which 当前点击的是列表的第几个 item */ @override public void onclick(dialoginterface dialog, int which) { toast.maketext(mainactivity.this, "列表 dialog = " + dialog + "which = " + which, toast.length_short).show(); } }); builder.setcancelable(false);//不允许被某些方式取消,比如按对话框之外的区域或者是返回键 builder.show(); } }
列表弹窗:
单选弹窗:
多选弹窗:
日期弹窗:
时间弹窗:
进度条弹窗:
差不多常见的几种都在这里了,至于还有一个popupwindow这里暂时不作介绍。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
Android UI设计之AlertDialog弹窗控件
-
Android UI设计之AlertDialog弹窗控件
-
Android UI设计系列之自定义ViewGroup打造通用的关闭键盘小控件ImeObserverLayout(9)
-
Android项目开发之UI设计器
-
Android UI设计系列之自定义DrawView组件实现数字签名效果(5)
-
Android UI设计系列之自定义EditText实现带清除功能的输入框(3)
-
Android UI设计系列之自定义ListView仿QQ空间阻尼下拉刷新和渐变菜单栏效果(8)
-
Android UI设计系列之自定义SwitchButton开关实现类似IOS中UISwitch的动画效果(2)
-
Android UI设计系列之HTML标签实现TextView设置中文字体加粗效果(6)
-
Android UI设计系列之ImageView实现ProgressBar旋转效果(1)