我有一个警报对话框,目前看起来像这样: Current Alert Dialog
但我希望“YES”和“NO”按钮有背景,或者看起来像是按钮而不是文本。我已经尝试为AlertDialog实现自定义主题,但我可以获得的唯一更改是更改“警告”文本颜色。
自定义警报对话框主题的最有效和最简单的方法是什么,以便有实际按钮代替“是”和“否”?
这是我当前的res / values / styles.xml文件
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light">
<!-- Customize your theme here. -->
<item name="colorAccent">@color/PCCA_blue</item>
</style>
<style name="customAlertDialog" parent="@android:style/Theme.Holo.Dialog">
<item name="android:textColor">@color/red</item>
</style>
这是我构建并显示AlertDialog的地方:
private void alert(final String action){
final AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(new ContextThemeWrapper(this, R.style.customAlertDialog));
String message = "";
switch(action) {
case "upload":
message = "Are you sure you want to upload the counted quantities?\n\nIt may take a few minutes to reflect your changes.";
break;
case "download":
message = "Downloading new worksheets may overwrite existing counted quantities, do you want to continue?\n\n" +
"NOTE: You may want to upload counts first.\n\n" +
"(Changed counted quantities will still be available for upload)";
break;
default:
message = action;
break;
}
alertDialogBuilder.setTitle("WARNING");
alertDialogBuilder.setMessage(message);
DialogInterface.OnClickListener listener = new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
if(which == DialogInterface.BUTTON_POSITIVE) {
if (action.equals("upload")) {
MainActivity.upload(context);
} else if (action.equals("download")) {
MainActivity.download(context);
}
} else {
dialog.cancel();
}
}
};
alertDialogBuilder.setPositiveButton("YES", listener);
alertDialogBuilder.setNegativeButton("NO", listener);
AlertDialog alertDialog = alertDialogBuilder.create();
alertDialog.show();
}
任何建议表示赞赏。我是android的新手。
答案 0 :(得分:1)
AlertDialog有一个getButton()
方法。你可以得到按钮并设置它的背景。有一些警告:只能在显示对话框后调用该方法(我相信在Dialog类上调用onStart()
之后)。
话虽这么说,考虑到填充,边距,包含布局等,你可能不会得到你想要的外观。AlertDialog
的要点是有一个与系统主题相匹配的标准外观对话框。它并不意味着可以自定义,用户界面。
否则,您需要创建一个完全自定义的对话框。您有几个选项:DialogFragment,自定义对话框或对话框主题活动。谷歌这些主题以获取更多信息。