I am working on a new application on android.I have implemented actionbarsherlock in my app .
This is the screenshot of my screen.
I want to change the background of the screen so i created a style.
<style name="Theme.MyTheme" parent="Theme.Sherlock.ForceOverflow">
<item name="actionBarStyle">@style/Widget.MyTheme.ActionBar</item>
<item name="android:actionBarStyle">@style/Widget.MyTheme.ActionBar</item>
</style>
<style name="Widget.MyTheme.ActionBar" parent="Widget.Sherlock.ActionBar">
<item name="android:background">#ff000000</item>
<item name="background">#ffff0000</item>
</style>
After using my theme the blue border is missing.
This is the screen i got after using my theme.
.
Please help me to find me a solution friends.
This happened because the blue border is part of the actionbar background. When you changed it to red it disappeared.
You have to create your own drawable with a bottom border and override the actionbar’s background.