欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android开发--实现对话框(AlertDialog)

程序员文章站 2022-07-13 23:27:47
...

在我们平时见到的应用程序中经常会看到弹出一个对话框用于通知用户下一步的动作,在本实例中实现了一个简单的对话框(在上一实例的基础上),截图如下:

Android开发--实现对话框(AlertDialog)

具体的实现代码如下:

				AlertDialog.Builder aleBuilder=new AlertDialog.Builder(Notification_Activity.this);
				aleBuilder.setIcon(R.drawable.ic_launcher);
				aleBuilder.setTitle("Display Dialog");
				aleBuilder.setMessage("This is just a display!");
				aleBuilder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
					
					@Override
					public void onClick(DialogInterface dialog, int which) {
						// TODO Auto-generated method stub
					Toast.makeText(Notification_Activity.this, "您点击的是OK按钮!", Toast.LENGTH_LONG).show();	
					}
				});
				aleBuilder.setNegativeButton("CANCEL", new DialogInterface.OnClickListener() {
					
					@Override
					public void onClick(DialogInterface dialog, int which) {
						// TODO Auto-generated method stub
						Toast.makeText(Notification_Activity.this, "您点击的是CANCEL按钮!", Toast.LENGTH_LONG).show();	
					}
				});
				aleBuilder.show();