我想更改 material Components 主题中的标题栏文本颜色。任何帮助将不胜感激
I want to change title bar text color in material Components theme. Any help will be greatly appreciated
我试过设置标题颜色,但已弃用。我尝试使用
来改变颜色
<style name="MyTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/MyTheme.ActionBarStyle</item>
</style>
<style name="MyTheme.ActionBarStyle" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:titleTextStyle">@style/MyTheme.ActionBar.TitleTextStyle</item>
</style>
<style name="MyTheme.ActionBar.TitleTextStyle" parent="@android:style/TextAppearance.Holo.Widget.ActionBar.Title">
<item name="android:textColor">@color/red</item>
</style>
如此处所述:ActionBar text color 但是整个标题栏颜色在执行此操作时变为白色。
我想要做的就是将我的黑色标题栏文本颜色设置为白色。
我也在此处尝试了此解决方案:Change color title bar 但我使用的是 MaterialComponents 主题并使用 AppCompactThemes 使我的应用程序崩溃。
只需将此添加到您的基本主题
<item name="titleTextColor">@android:color/holo_red_dark</item> //whatever color
例如:
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="titleTextColor">@android:color/holo_green_dark</item>
</style>
假设您没有使用 Toolbar
ActionBar 中使用的文本颜色基于属性 android:textColorPrimary
.
您可以覆盖它,在您的应用主题中添加 actionBarTheme
属性:
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight">
<item name="actionBarTheme">@style/ThemeOverlay.Actionbar</item>
</style>
与:
<style name="ThemeOverlay.Actionbar" parent="ThemeOverlay.MaterialComponents.ActionBar.Surface" >
<item name="android:textColorPrimary">@color/....</item>
</style>
您可以选择
我试过设置标题颜色,但已弃用。我尝试使用
来改变颜色 <style name="MyTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/MyTheme.ActionBarStyle</item>
</style>
<style name="MyTheme.ActionBarStyle" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:titleTextStyle">@style/MyTheme.ActionBar.TitleTextStyle</item>
</style>
<style name="MyTheme.ActionBar.TitleTextStyle" parent="@android:style/TextAppearance.Holo.Widget.ActionBar.Title">
<item name="android:textColor">@color/red</item>
</style>
如此处所述:ActionBar text color 但是整个标题栏颜色在执行此操作时变为白色。 我想要做的就是将我的黑色标题栏文本颜色设置为白色。 我也在此处尝试了此解决方案:Change color title bar 但我使用的是 MaterialComponents 主题并使用 AppCompactThemes 使我的应用程序崩溃。
只需将此添加到您的基本主题
<item name="titleTextColor">@android:color/holo_red_dark</item> //whatever color
例如:
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="titleTextColor">@android:color/holo_green_dark</item>
</style>
假设您没有使用 Toolbar
ActionBar 中使用的文本颜色基于属性 android:textColorPrimary
.
您可以覆盖它,在您的应用主题中添加 actionBarTheme
属性:
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight">
<item name="actionBarTheme">@style/ThemeOverlay.Actionbar</item>
</style>
与:
<style name="ThemeOverlay.Actionbar" parent="ThemeOverlay.MaterialComponents.ActionBar.Surface" >
<item name="android:textColorPrimary">@color/....</item>
</style>
您可以选择