I just deployed an ActionBarSherlock
app to a 2.3.6
device, but the main action bar does not show. I tested the contextual action bar on a ListView item, and it works correctly. I am using Theme.Sherlock.Light
for my theme. Any idea what could be causing this problem?
I wanted to add this in case it may be related, maps v2 also doesn't load correctly on the Galaxy Ace
.
This was a stupid mistake on my part. I was extending OrmLiteBaseActivity
and not SherlockActivity
. In case someone using OrmLite
happens upon this question, you can get the helper
by calling (DatabaseHelper) OpenHelperManager.getHelper(this, DatabaseHelper.class)
instead of using getHelper
.