更改操作栏标题颜色

时间:2013-04-26 15:58:28

标签: android android-actionbar actionbarsherlock

我的代码如下所示,当它工作时(当我将父主题更改为Theme.Sherlock或Theme.Sherlock.Light它所做的主题更改时)它不会更改标题颜色。

代码与here

几乎相同

代码:

<?xml version="1.0" encoding="utf-8"?>
<resources>

<style name="MyTheme" parent="@style/Theme.Sherlock">
 <item name="actionBarStyle">@style/MyTheme.ActionBarStyle</item>
 <item name="android:actionBarStyle">@style/MyTheme.ActionBarStyle</item>
</style>

<style name="MyTheme.ActionBarStyle" parent="@style/Widget.Sherlock.ActionBar">
     <item name="android:titleTextStyle">@style/MyTheme.ActionBar.TitleTextStyle</item>
</style>

<style name="MyTheme.ActionBar.TitleTextStyle" parent="@style/TextAppearance.Sherlock.Widget.ActionBar.Title" >
     <item name="android:textColor">#FF0000</item>
</style>

</resources>

8 个答案:

答案 0 :(得分:53)

我改变了这样的标题颜色

actionBar.setTitle(Html.fromHtml("<font color='#ff0000'>ActionBarTitle </font>"));

答案 1 :(得分:38)

来自Jake Wharton的ActionBarSherlock网站:

镜像属性

  

由于Android主题系统的限制任何主题   必须在两个属性中声明自定义。正常   android-prefixed属性将主题应用于本机操作栏   并且未加前缀的属性用于自定义实现。

必须将 MyTheme.ActionBarStyle 更改为:

   <style name="MyTheme.ActionBarStyle" parent="@style/Widget.Sherlock.ActionBar">
     <item name="android:titleTextStyle">@style/MyTheme.ActionBar.TitleTextStyle</item>
     <item name="titleTextStyle">@style/MyTheme.ActionBar.TitleTextStyle</item>
   </style>

现在标题文字颜色已更改。

答案 2 :(得分:13)

使用下面的代码为操作栏文本和操作栏背景提供不同的颜色,只需在清单中使用下面的主题对照您想要输出的活动:)

 <style name="MyTheme" parent="@android:style/Theme.Holo.Light">
        <item name="android:actionBarStyle">@style/MyActionBar</item>
    </style>

    <style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
        <item name="android:titleTextStyle">@style/TitleBarTextColor</item>
        <item name="android:background">YOUR_COLOR_CODE</item>
    </style>

    <style name="TitleBarTextColor" parent="@style/TextAppearance.AppCompat.Widget.ActionBar.Title">
        <item name="android:textColor">YOUR_COLOR_CODE</item>
    </style>

答案 3 :(得分:7)

我尝试了以上所有方法,它对我没用。我刚刚通过以下代码实现了..

Spannable text = new SpannableString(actionBar.getTitle());
text.setSpan(new ForegroundColorSpan(Color.BLUE), 0, text.length(), Spannable.SPAN_INCLUSIVE_INCLUSIVE);
actionBar.setTitle(text);

答案 4 :(得分:4)

对我来说最简单的方法是在主题样式中添加以下内容:

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

答案 5 :(得分:2)

在您的style.xml值文件夹中,这将更改您的操作栏颜色。将#666666替换为所选的标题背景颜色代码,并将#000000替换为标题文字颜色。

<style name="MyTheme" parent="@android:style/Theme.Holo.Light">
    <item name="android:actionBarStyle">@style/NewActionBar</item>
</style>

<style name="NewActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:titleTextStyle">@style/TitleBarTextColor</item>
<item name="android:background">#666666</item>
</style>
<style name="TitleBarTextColor" parent="@style/TextAppearance.Sherlock.Widget.ActionBar.Menu">
    <item name="android:textColor">#000000</item>
</style>

然后别忘了编辑您的清单文件 - &gt;机器人:主题=&#34; @风格/ NewTheme&#34;

    <application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/NewTheme" >
    <activity
        android:name="com.nearby.welcome.Splash"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

</application>

答案 6 :(得分:1)

如果您尝试更改自定义工具栏中的标题文字,请尝试将app:titleTextColor添加到工具栏中,如下所示:

 <android.support.v7.widget.Toolbar
        android:id="@+id/my_toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        android:elevation="4dp"
        android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
        app:titleTextColor="@color/colorWhite" />

答案 7 :(得分:0)

如果要更改ActionBar标题颜色,请先遵循此步骤。 转到style.xml并在资源中使用以下代码

<style name="ActionBar.Solid.Ribbit.TitleTextStyle"
    parent="TextAppearance.AppCompat.Widget.ActionBar.Title">
    <item name="android:textColor">@color/actionBarTextColor</item>
</style>