我想在android中将操作栏标题颜色更改为白色。我在值Theme.AppCompat.Light
和值-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标题颜色没有变化。
答案 0 :(得分:5)
您可以使用ActionBar
属性指定colorPrimary
的背景颜色;如下所示:
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
<item name="colorPrimary">@android:color/white</item>
</style>
以上是为AppCompat
创建的特殊标记;您会注意到android:
命名空间被省略。
答案 1 :(得分:1)
如果您使用的是Theme.AppCompat.Light.NoActionBar,请执行
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="@color/background_material_dark"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
答案 2 :(得分:0)
您还应检查布局xml文件中是否指定了android:theme
属性,该属性优先于主题