码迷,mamicode.com
首页 > 移动开发 > 详细

Android开发-- 简单对话框

时间:2014-09-25 19:45:57      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   color   os   ar   sp   div   art   

 

 1 final Builder builder = new AlertDialog.Builder(this);
 2 builder.setIcon(R.drawable.appicns_folder_smart);
 3 builder.setTitle("Normal Dialog");
 4 builder.setMessage("A simple dialog");
 5 builder.setPositiveButton("OK", new OnClickListener() {
 6                     
 7     @Override
 8     public void onClick(DialogInterface arg0, int arg1) {
 9         toast.setText("User has clicked OK button.");
10         toast.show();
11         }
12     });
13                 
14     builder.setNegativeButton("Cancel", new OnClickListener() {
15                     
16     @Override
17     public void onClick(DialogInterface arg0, int arg1) {
18         toast.setText("User has clicked Cancel button.");
19         toast.show();
20         }
21     });
22 builder.create().show();

 

Android开发-- 简单对话框

标签:android   style   blog   color   os   ar   sp   div   art   

原文地址:http://www.cnblogs.com/feiling/p/3993243.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!