-1

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?

PravinCG
  • 7,688
  • 3
  • 30
  • 55
Phil
  • 646
  • 1
  • 8
  • 23

1 Answers1

2

Check out the Style generator to see what can be customised and how to do it.

http://jgilfelt.github.com/android-actionbarstylegenerator/

Kuffs
  • 35,581
  • 10
  • 79
  • 92