[小代码]简单的对话框设置标题、消息、图标和按钮

别忘了 import android.app.AlertDialog; import android.content.DialogInterface;

AlertDialog alertDialog = new AlertDialog.Builder(this).create();
alertDialog.setTitle("Title");
alertDialog.setMessage("Message");
alertDialog.setButton("OK", new DialogInterface.OnClickListener() {
   public void onClick(DialogInterface dialog, int which) {
      // TODO Add your code for the button here.
   }
});
// Set the Icon for the Dialog
alertDialog.setIcon(R.drawable.icon);
alertDialog.show();


你可能感兴趣的:(对话框)