AlertDialog.Builder弹出对话框_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > AlertDialog.Builder弹出对话框

AlertDialog.Builder弹出对话框

 2013/12/5 23:26:00  MSTK  博客园  我要评论(0)
  • 摘要:在Android中,弹出对话框使用AlertDialog.Builder方法。newAlertDialog.Builder(MainActivity.this).setTitle("本机设置").setView(view).setPositiveButton("确定",newDialogInterface.OnClickListener(){@OverridepublicvoidonClick(DialogInterfacev,intarg1)
  • 标签:对话

在Android中,弹出对话框使用AlertDialog.Builder方法。

class="brush:java;gutter:true;">		   new AlertDialog.Builder(MainActivity.this).setTitle("本机设置")
		   		.setView(view)
		   		.setPositiveButton("确定",new DialogInterface.OnClickListener() {   
		               
		            @Override  
		            public void onClick(DialogInterface v, int arg1){ 
	                
		                address_client = spn_client_ip.getSelectedItem().toString();
		                port_client = Integer.parseInt(edt_client_port.getText().toString()); 
		                write_ip();
		                
		            } 
		   
		   		}).show();

其中,view是inflater.inflate的一个xml布局文件:

final View view = inflater.inflate(R.layout.dialog_client, null);

 .setPositiveButton()是监听positive button被按下的事件,new DialogInterface.OnClickListener()是该事件的Listener。

如果需要negative button,还可以setNegativeButton()。

.show()方法显示该按钮。

运行结果:

 

上一篇: 微软:NSA是顽固的网络威胁 下一篇: 没有下一篇了!
发表评论
用户名: 匿名