我正在使用ActionBarSherlock
,並且希望爲其下方的ActionBar和內容視圖使用自定義背景。當我嘗試這一點,背景填充整個屏幕,其中包括動作條:錯誤:找不到與給定名稱匹配的資源:attr'abBackground'
<style name="MyTheme" parent="@style/Theme.Sherlock">
<item name="android:windowBackground">@drawable/background</item>
</style>
所以,從this answer,我試圖添加abBackground
的主題:
<style name="MyTheme" parent="@style/Theme.Sherlock">
<item name="android:windowBackground">@drawable/background</item>
<item name="abBackground">@drawable/bg_button_idle</item>
</style>
但是,我得到的錯誤
Error: No resource found that matches the given name: attr 'abBackground'.
這是爲什麼,我該如何解決?
您還需要一個操作欄風格的'android:background'項目以及ICS +。 – 2012-08-03 17:12:45