Missing buttons on AlertDialog | Android 7.0 (Nexus 5x)

Indeed it seems that AlertDialog theme needs to be defined. An alternative approach to above would be to define AlertDialog theme in Application theme: <style name=”AppTheme” parent=”Theme.AppCompat.Light.NoActionBar”> <!– … other AppTheme items … –> <item name=”android:alertDialogTheme”>@style/AlertDialogTheme</item> </style> <style name=”AlertDialogTheme” parent=”Theme.AppCompat.Light.Dialog.Alert”> <item name=”colorPrimary”>@color/colorPrimary</item> <item name=”colorPrimaryDark”>@color/colorPrimaryDark</item> <item name=”colorAccent”>@color/colorAccent</item> </style> Then it is enough create AlertDialog.Builder only with … Read more