当前,我的所有文本和提示颜色默认情况下均为白色,尽管我可以在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>
答案 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