如何将所有文本颜色更改为默认颜色(文本为黑色,提示为灰色)而不是白色

时间:2018-12-07 10:30:05

标签: android kotlin material-design textview

当前,我的所有文本和提示颜色默认情况下均为白色,尽管我可以在xml文件中进行更改时可以,但是,TextInputLayout文本计数器之类的某些东西却没有允许更改颜色

下面是我的colors.xml

<color name="colorPrimary">#3F51B5</color>
<color name="colorPrimaryDark">#303F9F</color>
<color name="colorAccent">#5CCDCC</color>

下面是我的styles.xml

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/GreenishBlue</item>
    <item name="colorAccent">@color/colorAccent</item>
    <item name="android:windowLightStatusBar">true</item>

</style>

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

</resources>

When The background is black, the text counter is visible

When The background is white

2 个答案:

答案 0 :(得分:0)

AndroidManifest的修改如下:

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/CustomTheme">

文件res/values/styles.xml如下所示:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="CustomTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <item name="android:textColor">#000</item> //black color for text
        <item name="android:textColorHint">#939393</item> //Gray color for hint
    </style>
</resources>

答案 1 :(得分:0)

在现有的.txt中添加以下代码将更改控件的默认文本颜色,该控件中的文本颜色未使用内置样式或动态地在xml中内联设置。

AppTheme