I seem to be having trouble getting rid of this second bar, shown here:
https://i.stack.imgur.com/zwbPm.png
(cant post images)
It doesn’t show when in landscape view, or on my 10″ tablet in portrait view.
I’ve tried the following fixes:
android:uiOptions="none"
in my manifest
Here is the code for my items:
<item android:id="@+id/profile"
android:title="User Profile"
android:layout_gravity="left"
android:showAsAction="ifRoom|withText" ></item>
This second bar looks like the Tab action bar, try to put
getSupportActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_STANDARD);somewhere in your code (inonCreate()oronStart()for example).Also be sure you have the latest version of ActionBarSherlock installed.