修改标题栏颜色和设置图标

时间:2014-02-27 14:48:08

标签: android styles titlebar

可以更改标题栏外观吗?我会使其透明,并使用自定义图像更改默认设置图标。这就是我的主题写作:

<style name="AppBaseTheme" parent="android:Theme.Light">

</style>

<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">

    <item name="android:windowBackground">@drawable/my_bg</item>

</style>

2 个答案:

答案 0 :(得分:0)

<style name="AppTheme" parent="@android:style/Theme.DeviceDefault">
    <item name="android:textColor">#colorhere</item>
    <item name="android:windowTitleBackgroundStyle">@style/WindowTitleBackground</item>
</style>

<style name="WindowTitleBackground">     
    <item name="android:background">#colorhere</item>    
</style>

并且不要忘记检查

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >

答案 1 :(得分:0)

看一下Android Action Bar Style Generator,它是一个非常有用的工具栏样式工具。