我想要一个 AlertDialog 构建器,它只有一个按钮,显示 OK 或 Done 或其他内容,而不是默认的 yes 和 no。可以使用标准的 AlertDialog 来完成,还是我必须使用其他东西?
难道不能只使用一个积极的按钮来完成吗?
AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setMessage("Look at this dialog!") .setCancelable(false) .setPositiveButton("OK", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { //do things } }); AlertDialog alert = builder.create(); alert.show();