Android学习笔记使用AlertDialog实现对话框

Android学习笔记使用AlertDialog实现对话框,第1张

概述使用AlertDialog可以实现如下对话框案例布局问文件就加了几个Button,我直接上Java代码了实现显示带取消,确定按钮的对话框按钮ButtonshowDialogOne=findViewById(R.id.showDialog_one);showDialogOne.setOnClickListener(newView.OnClickListener(){ 使用AlertDialog可以实现如下对话框

案例

布局问文件就加了几个button,我直接上Java代码了

实现显示带取消,确定按钮的对话框按钮
button showDialogone = findVIEwByID(R.ID.showDialog_one);        showDialogone.setonClickListener(new VIEw.OnClickListener(){            @OverrIDe            public voID onClick(VIEw v) {                AlertDialog alertDialog = new                        AlertDialog.Builder(MainActivity.this).create();                //创建AlertDialog对象                alertDialog.setIcon(R.drawable.apple);//设置图标                alertDialog.setTitle("一个战5渣:");//设置标题                alertDialog.setTitle("苟活性命于互联网,我太难了,是吧?");                alertDialog.setbutton(DialogInterface.button_NEGATIVE,                        "否", new Dialog.OnClickListener() {                            @OverrIDe                            public voID onClick(DialogInterface dialog, int which) {                                Toast.makeText(                                        MainActivity.this, "您单击了否按钮",                                        Toast.LENGTH_SHORT).show();                            }                        });//取消按钮                alertDialog.setbutton(DialogInterface.button_POSITIVE,                        "是", new Dialog.OnClickListener() {                            @OverrIDe                            public voID onClick(DialogInterface dialog, int which) {                                Toast.makeText(                                        MainActivity.this, "您单击了是按钮",                                        Toast.LENGTH_SHORT).show();                            }                        });//取消按钮                alertDialog.show();            }        });

效果:

显示带列表的对话框按钮 总结

以上是内存溢出为你收集整理的Android学习笔记使用AlertDialog实现对话框全部内容,希望文章能够帮你解决Android学习笔记使用AlertDialog实现对话框所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1061539.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存