suppender of AndroidStudy
12/27/2016 - 1:06 AM

改变了对话框的图表,添加了三个按钮的对话框

改变了对话框的图表,添加了三个按钮的对话框

Dialog dialog = new AlertDialog.Builder(this)
      .setIcon(
       android.R.drawable.btn_star)
       .setTitle("喜好调查").setMessage(
           "你喜欢李连杰的电影吗?")
       .setPositiveButton("很喜欢",
         new OnClickListener() {
             @Override
             public void onClick(DialogInterface dialog, int which) {
                
                Toast.makeText(Main.this, "我很喜欢他的电影。",
                    Toast.LENGTH_LONG).show();
        }
       })
       .setNegativeButton("不喜欢", new OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
       
               Toast.makeText(Main.this, "我不喜欢他的电影。", Toast.LENGTH_LONG)
                  .show();
      }
     })
     .setNeutralButton("一般", new OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
       
                Toast.makeText(Main.this, "谈不上喜欢不喜欢。", Toast.LENGTH_LONG)
                .show();
      }
     }).create();
     dialog.show();