【发布时间】:2013-09-11 18:44:40
【问题描述】:
我的界面是用 ActionBarSherlock 实现的,它适用于最新的 android 版本。但是这个android 2.1到android 2.3,它保留了旧的标题栏,我找不到删除它的方法。
我已经试过了:
if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.HONEYCOMB) {
if (actionBar != null) {
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
}
}
使用android Window 对象和Sherlock 的Window 对象。 不能让 thar bar 消失...
【问题讨论】:
-
您在 Manifest 中指定的主题是什么?你用的是夏洛克的吗?
标签: android android-actionbar actionbarsherlock