更改操作栏标题颜色Theme.AppCompat.Light.DarkActionBar android

前端之家收集整理的这篇文章主要介绍了更改操作栏标题颜色Theme.AppCompat.Light.DarkActionBar android前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在 android中将操作栏标题颜色更改为白色.我在值Theme.AppCompat.Light和values-14使用主题Theme.AppCompat.Light.DarkActionBar
到目前为止我已经尝试过
在values文件夹中:
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
    <item name="actionBarStyle">@style/MyActionBar</item>
</style>

<style name="MyActionBar" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
    <item name="android:textColor">@android:color/white</item>
</style>

和值-14文件

<style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="actionBarStyle">@style/MyActionBar</item>
</style>

<!-- ActionBar styles -->
<style name="MyActionBar" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
    <item name="android:textColor">@android:color/white</item>
</style>

但ActionBar标题颜色没有变化.

解决方法

您可以使用colorPrimary属性指定ActionBar的背景颜色;类似以下内容
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
    <item name="colorPrimary">@android:color/white</item>
    </style>

以上是为AppCompat创建的特殊标记;你会注意到android:namespace被省略了.

原文链接:https://www.f2er.com/android/309713.html

猜你在找的Android相关文章