I want to remove the lightblue divider line below the ActionBar when I use ActionBarSherlock.
I found something like this and added it to my styles.xml
<style name="MyTheme" parent="Theme.Sherlock">
<item name="windowContentOverlay">@null</item>
<item name="android:windowContentOverlay">@null</item>
</style>
But it doesn't work, the line is still there. Is there any possibility to achieve what I want? Or maybe is it possible to change its color?