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 =
What worked for me was in styles.xml:
and
and in your program:
final AlertDialog.Builder alertDialog = new AlertDialog.Builder(getActivity(), R.style.LightDialogTheme);