我是安卓新手。
目前我想显示一个AlertDialog
带有“确定”和“取消”按钮的框。
默认为 PositiveButton: Left, NegativeButton: Right
您能告诉我如何将 PositiveButton 移到右侧并将 NegativeButton 移到左侧吗?
如果我们将文本“OK”更改为 NegativeButton 并将“Cancel”更改为 PositiveButton,如果 Negativebutton 在按下 OK 时发出不好的声音,是否有任何机会/麻烦。
我的代码:
AlertDialog.Builder builder = new AlertDialog.Builder(SUtils.getContext());
builder.setMessage("Confirmation?")
.setCancelable(false)
.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
//Todo
dialog.cancel();
}
})
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
//TOdo
}
})
dialog = builder.create();
谢谢,天使