Android 改变标题栏的背景色

1:styles.xml

<!-- Activity theme -->
    <style name="CustomTheme" parent="android:Theme">
        <item name="android:windowTitleBackgroundStyle">@style/TitleBackground</item>
    </style>
    <style name="TitleBackground">
        <item name="android:background">#ff8f26</item>
    </style>

2:AndroidManifest.xml

<activity
            android:theme="@style/CustomTheme">
posted @ 2013-11-02 11:12  yshy  阅读(1919)  评论(0)    收藏  举报