【问题标题】:modify titlebar color and setting icon修改标题栏颜色和设置图标
【发布时间】:2014-02-27 14:48:08
【问题描述】:
可以更改标题栏的外观吗?我会使其透明并使用自定义图像更改默认设置图标。我的主题是这样写的:
<style name="AppBaseTheme" parent="android:Theme.Light">
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:windowBackground">@drawable/my_bg</item>
</style>
【问题讨论】:
标签:
android
styles
titlebar
【解决方案1】:
<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" >