I'm trying to set the highlight color of action items in my action bar, however I'm not sure how to do it for lower API levels.
The app I'm working on has a minimum SDK level of 8, however the attribute for setting highlight color of action items in an action bar requires higher SDK level.
I tried to add this item to my app's base theme style:
<item name="android:actionBarItemBackground">@android:color/transparent</item>
however it requires API level of 14.
How can I do it with API level of 8, using the support action bar?