I am trying to create an AlertDialog but the buttons are not showing. Only seeing this issue in Android 7.0:
AlertDialog
final AlertDialog.Builder builder =
You can add custom colour to button. Below your code
builder.show();
Write this
Button bg = dialog.getButton(DialogInterface.BUTTON_POSITIVE); bg.setTextColor(Color.BLUE);