Today we had the same problem. Old thread, but I found this: and it works fine.
Just change your styles.xml
<resources> <style name="AppTheme" parent="Theme.AppCompat.NoActionBar"> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> <item name="android:dialogTheme">@style/DialogStyle</item> <item name="android:alertDialogTheme">@style/DialogStyle</item> </style> <style name="DialogStyle" parent="android:Theme.Material.Dialog"> <item name="android:colorAccent">@color/colorAccent</item> </style>
source share