I am having an issue with the selected color of the logo on the actiobar. As in the screenshot below, the selection doesn't start at the start of the actionbar, and it actually goes beyond the image itself. The image ends 2px after the divider but the selection extends further than that.
I set the icon with android:logo="@drawable/ic_action_menu" in the manifest and I am using ActionBarSherlock. I have checked my custom styles and can't find anything that could cause this. All the sub activities work fine when showing the home icon as up.
Any help would be really appreciated!
Some of my relevant code:
protected void actionBarSetup() {
ActionBar ab = getSupportActionBar();
ab.setDisplayShowTitleEnabled(true);
ab.setHomeButtonEnabled(true);
}
<activity
android:name="MainActivityWrapper"
android:configChanges="orientation|keyboardHidden|screenSize"
android:icon="@drawable/ic_action_menu"
android:label="@string/title_main"
android:launchMode="singleTop" >
</activity>
I am also using the SlidingMenu library if that may be related.
