I am trying to add the Sherlock action bar to my project and just copied the sample code. The demo app runs fine on pre 4.0 devices but my app shows the action bar twice at the top. Since I stripped down the relevant code to be the example code and I cannot post my entire project, my simple question is: Did someone see a similar behavior yet? This might guide me to the right direction. Many thanks!
Manifest simply adds
android:theme="@style/Theme.Sherlock"
Activity:
private ActionBarSherlock mSherlock = ActionBarSherlock.wrap(this);
mSherlock.getActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);