更新到appcompat-v7后,Android ActionBar首选项文本为黑色:22.2.1'

时间:2015-07-31 05:46:07

标签: android xml android-actionbar android-appcompat appcompat-v7-r22.2

我在Android Studio中更新了我的appcompat依赖项 - >来自

的build.gradle
  

com.android.support:appcompat-v7:22.1.1'

  

com.android.support:appcompat-v7:22.2.1'

更新后,标题文字为黑色而不是白色,但只在首选项中。我正在使用这个toolbar.xml在PreferencesActivity中设置ActionBar的样式:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        android:minHeight="?attr/actionBarSize"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
        app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    </android.support.v7.widget.Toolbar>

</LinearLayout>

我试图在xml文件中设置颜色是徒劳的:

android:textColor="#FFFFFF"

我尝试在style.xml中设置ActionBar的样式,但没有任何成功:

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

<style name="MyActionBar" parent="@style/Widget.AppCompat.ActionBar.Solid">
    <item name="titleTextStyle">@style/MyTitleTextStyle</item>
</style>

<style name="MyTitleTextStyle" parent="@style/TextAppearance.AppCompat.Widget.ActionBar.Title">
    <item name="android:textColor">#FFFFFF</item>
</style>

有人有任何想法吗?

1 个答案:

答案 0 :(得分:0)

你应该设置:

<item name="android:textColorPrimary">@color/white</item>