I have my interface implemented with ActionBarSherlock, and it works great with the newest android versions. But this android 2.1 to android 2.3, it keeps the older title bar, I can’t find a way to remove it.
I’ve already tried:
if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.HONEYCOMB) {
if (actionBar != null) {
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
}
}
With the android Window object and Sherlock’s Window object.
Can’t make thar bar go away…
res/values/style.xml:
res/values-v11/style.xml:
In AndroidManifest.xml: