可以更改标题栏外观吗?我会使其透明,并使用自定义图像更改默认设置图标。这就是我的主题写作:
<style name="AppBaseTheme" parent="android:Theme.Light">
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:windowBackground">@drawable/my_bg</item>
</style>
答案 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,它是一个非常有用的工具栏样式工具。