Customizing title bar colors Android 3.2+

Started by
-1 comments, last by polyfrag 9 years, 4 months ago
I'm customizing the holo theme for my android 4.2.1 phone.
I put this image in /res/drawable/
And in /res/values-v11/styles.xml I put

<resources>
    
    <!--
        Base application theme for API 11+. This theme completely replaces
        AppBaseTheme from res/values/styles.xml on API 11+ devices.
    -->
    <style name="AppBaseTheme" parent="android:Theme.Holo.Light">
        <!-- API 11 theme customizations can go here. -->
        
        <item name="android:actionBarStyle">@style/MyActionBar</item>
        
        <item name="android:windowActionBar">false</item>
   <item name="android:windowTitleSize">30dip</item>
   <item name="android:windowTitleBackgroundStyle">@style/AppTheme</item>
    </style>
    
    <!-- ActionBar styles -->
    <style name="MyActionBar"
           parent="@android:style/Widget.Holo.Light.ActionBar">
        <item name="android:background">@drawable/titlebarbg</item>
    </style>
    
</resources>
Is this correct? I don't see the title bar color changed to blue.

This topic is closed to new replies.

Advertisement