在alertDialog中更新按钮颜色变量的方法是通过自定义AlertDialog的样式来实现。以下是具体步骤:
<style name="CustomAlertDialog" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="android:buttonBarButtonStyle">@style/CustomButtonBarButton</item>
</style>
<style name="CustomButtonBarButton" parent="Widget.AppCompat.Button.ButtonBar.AlertDialog">
<item name="android:textColor">@color/custom_button_text_color</item>
<item name="android:background">@drawable/custom_button_background</item>
</style>
AlertDialog.Builder builder = new AlertDialog.Builder(context, R.style.CustomAlertDialog);
builder.setTitle("Title")
.setMessage("Message")
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// 点击按钮后的操作
}
})
.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// 点击按钮后的操作
}
});
AlertDialog dialog = builder.create();
dialog.show();
android:textColor
来更新按钮的文本颜色,通过修改android:background
来更新按钮的背景颜色。你可以根据需要自定义这些属性的值。注意:以上代码中的context
可以替换为你的上下文对象,R.style.CustomAlertDialog
是自定义样式的资源ID,你可以根据实际情况修改。
这种方法可以让你在AlertDialog中更新按钮的颜色变量,以实现自定义的UI效果。
领取专属 10元无门槛券
手把手带您无忧上云