浏览代码

Change alert dialog button text color

This commit changes the text color of the AlertDialog's buttons from `?android:attr/textColorPrimary` to `@color/text_color`.
This ensures that the button text can be readable throughout all themes.
czlucius 4 年之前
父节点
当前提交
2cad7849ba
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/res/values/styles.xml

+ 1 - 1
src/main/res/values/styles.xml

@@ -86,7 +86,7 @@
 
     <style name="FallbackTheming.Dialog.ButtonStyle"
         parent="Widget.MaterialComponents.Button.TextButton.Dialog">
-        <item name="android:textColor">?android:attr/textColorPrimary</item>
+        <item name="android:textColor">@color/text_color</item>
     </style>
 
 	<!-- separate action bar style for activities without an action bar -->