How to change ActionBar color?

28,601

Create a Theme:

<style name="Theme.MyAppTheme" parent="@android:style/Theme.Holo">
    <item name="android:actionBarStyle">@style/Theme.MyAppTheme.ActionBar</item>
</style>

<style name="Theme.MyAppTheme.ActionBar" parent="@android:style/Widget.Holo.ActionBar">
    <item name="android:background">#222222</item>
</style>
Share:
28,601
Andrew Rahimov
Author by

Andrew Rahimov

Updated on March 16, 2020

Comments

  • Andrew Rahimov
    Andrew Rahimov about 4 years

    How could I change ActionBar color? I've implemeted this and it works but not as I want. it changes color only after activity started, so right after app launch the original bar colour is showed, and only a second later my custom color is dislpayed. Is there any other way to handle that? Thanks in advance

    ....
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);  
        ActionBar actionBar;
        actionBar.setBackgroundDrawable(new ColorDrawable(Color.parseColor("#879f38")));
    .....