鸟语天空
AlertDialog
post by:追风剑情 2015-2-15 15:30

一、确定/取消对话框

Dialog alertDialog = new AlertDialog.Builder(this).
	setTitle("提示").
	setMessage("你确定要删除?").
	setIcon(R.drawable.ic_launcher).
	setPositiveButton("确定", new DialogInterface.OnClickListener() {
		   @Override
		   public void onClick(DialogInterface dialog, int which) {
		      // TODO Auto-generated method stub
		   }
		}).
		setNegativeButton("取消", new DialogInterface.OnClickListener() {		     
		   @Override
		   public void onClick(DialogInterface dialog, int which) {
		      // TODO Auto-generated method stub
		   }
		}).
		create();
alertDialog.show();
运行效果

Android对话框1.png

评论:
发表评论:
昵称

邮件地址 (选填)

个人主页 (选填)

内容