EGHDK
EGHDK

Reputation: 18130

Change ActionBar text color

I want to change my ActionBar color to blue (#0c01e3). My code is working because the actionbar background property is doing its job. But the text won't change. Any ideas? I'm using ABS.

<style name="MyActionBar1" parent="Widget.Sherlock.Light.ActionBar.Solid.Inverse">
        <item name="android:backgroundSplit">#06e301</item>
        <item name="android:backgroundStacked">#06e301</item>
        <item name="android:background">#06e301</item>
        <item name="background">#06e301</item>
        <item name="backgroundSplit">#B9001F</item>
        <item name="android:textColor">#0c01e3</item>
        >

enter image description here

Update

:

enter image description here

Upvotes: 4

Views: 5968

Answers (5)

Ninad Desai
Ninad Desai

Reputation: 567

If you want to change that using xml ... This is what worked for me ...

<style name="MyActionBar"
    parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
    <item name="android:background">@color/titleBarBgColor</item>
    <item name="android:titleTextStyle">@style/EldTheme.ActionBar.TitleTextStyle</item>
    <item name="android:subtitleTextStyle">@style/EldTheme.ActionBar.TitleTextStyle</item>
    <!-- Support library compatibility -->
    <item name="background">@color/titleBarBgColor</item>
    <item name="titleTextStyle">@style/EldTheme.ActionBar.TitleTextStyle</item>
    <item name="subtitleTextStyle">@style/EldTheme.ActionBar.TitleTextStyle</item>
</style>
<style name="EldTheme.ActionBar.TitleTextStyle" parent="@style/TextAppearance.AppCompat.Widget.ActionBar.Title">
    <item name="android:textColor">@color/titleBarTextColor</item>
</style>

Upvotes: 0

brandall
brandall

Reputation: 6144

To improve on the answer of @IntelliJ Amiya:

    getActionBar().setTitle(
            Html.fromHtml("<font color='" + getResources().getColor(R.color.my_color) + "'>"
                    + getString(R.string.title_home) + "</font>"));

Upvotes: 0

IntelliJ Amiya
IntelliJ Amiya

Reputation: 75788

Set this in your Java Page .It works for me

ActionBar ab = getActionBar();    
 ab.setTitle(Html.fromHtml("<font color='#ffffff'>App Name</font>"));

Upvotes: 2

Jake Wharton
Jake Wharton

Reputation: 76115

On the theme, there is an attribute, actionItemTextColor, which controls this color.

Remember to specify it with and without the android: prefix when using ActionBarSherlock.

Upvotes: 1

raghav chopra
raghav chopra

Reputation: 837

add this and then try

    <item name="android:textColor">#ffffff</item>

Upvotes: 1

Related Questions