欢迎访问悦橙教程(wld5.com),关注java教程。悦橙教程  java问答|  每日更新
页面导航 : > > 文章正文

Android带title、message、图标和按钮的对话框,androidtitle,AlertDialog

来源: javaer 分享于  点击 5922 次 点评:113

Android带title、message、图标和按钮的对话框,androidtitle,AlertDialog


AlertDialog alertDialog = new AlertDialog.Builder(this).create();alertDialog.setTitle("Title");alertDialog.setMessage("Message");alertDialog.setButton("OK", new DialogInterface.OnClickListener() {   public void onClick(DialogInterface dialog, int which) {      // TODO Add your code for the button here.   }});// Set the Icon for the DialogalertDialog.setIcon(R.drawable.icon);alertDialog.show();
相关栏目:

用户点评