Style an Action Bar in Android Honeycomb
问题 I'd like to set the background of an action bar (Honeycomb) using themes and styles. You can do it in code with ActionBar.setBackgroundDrawable(Drawable) , but I can't find the corresponding style attributes. I have tried using this theme and style for my Activity : <style name="Theme.MyApp" parent="android:style/Theme.Holo"> <item name="android:actionBarStyle">@style/ActionBar</item> </style> <style name="ActionBar"> <item name="android:background">@drawable/action_bar_background</item> <