如何使用样式设置操作栏标题的文本颜色

时间:2014-11-30 17:15:52

标签: android android-styles

您好我正在尝试将ActionBar标题颜色设置为白色。我试过下面的代码,但这不起作用。目前它的标题显示为黑色。我不知道我错过了什么。我尝试了不同的尝试,但没有取得成功,其他属性工作正常,如背景颜色等。

我正在使用AppCompat库进行反向移植。

任何人都可以帮助我。

style.xml

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light">

        <!-- colorPrimary is used for the default action bar background -->
        <item name="colorPrimary">@color/my_awesome_color</item>

        <!-- colorPrimaryDark is used for the status bar -->
        <item name="colorPrimaryDark">@color/my_awesome_dark_color</item>

        <!-- colorAccent is used as the default value for colorControlActivated,
            which is used to tint widgets -->
        <item name="colorAccent">@color/accent</item>

        <!-- ActionBar Text Style -->
        <item name="titleTextStyle">@style/titleStyle</item>

    </style>

    <style name="ActionBarCompat" parent="Widget.AppCompat.ActionBar">
        <item name="atitleTextStyle">@style/titleStyle</item>



    </style>

    <style name="titleStyle" parent="TextAppearance.AppCompat.Widget.ActionBar.Title">
        <item name="android:textColor">@color/action_bar_text_color</item>
    </style>

</resources>

1 个答案:

答案 0 :(得分:0)

如果您使用工具栏,则可以使用以下代码:

<android.support.v7.widget.Toolbar
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res/it.onecalculator"
  android:id="@+id/toolbar"
  android:layout_width="match_parent"
  android:layout_height="?attr/actionBarSize"
  android:background="?attr/colorPrimary"
  app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
  app:titleTextAppearance="@style/MyActionBarTitleText" />

MyActionBarTitleText是:

<style name="MyActionBarTitleText" parent="@style/TextAppearance.AppCompat.Widget.ActionBar.Title">
   <item name="android:textColor">@color/white</item>       
</style>