使用ActionBarSherlock时更改活动背景

时间:2012-05-18 18:15:54

标签: android actionbarsherlock theming

我在我的应用程序中更改了ActionBar的背景颜色,并且工作正常。但后来我想在我的活动中改变我的背景颜色,现在看起来非常糟糕。

这是我的主题xml:     

<style name="TucanActionBarStyle" parent="Widget.Sherlock.Light.ActionBar">
    <item name="android:background">@color/actionbar_green</item>
</style>


<style name="Theme.TucanActionBar" parent="@style/Theme.Sherlock.Light">
    <item name="android:actionBarStyle">@style/TucanActionBarStyle</item>   
    <item name="android:background">@android:color/white</item>
</style>

这就是它的样子: http://dl.dropbox.com/u/2683101/Screenshot_2012-05-18-19-49-23.png

1 个答案:

答案 0 :(得分:8)

您应该使用android:windowBackground来更改活动背景。由于上下文和android:background的使用方式,更改ContextThemeWrappers会影响许多其他内容。