是的,标题差不多。我尝试了不同的 android 样式,但我失去了底部的标题和操作栏。我也尝试过使用
getActionBar().setDisplayShowTitleEnabled(false);
getActionBar().setHomeButtonEnabled(false);
getActionBar().setDisplayUseLogoEnabled(false);
但是有了这个我得到一个空白的标题栏。我想完全删除标题栏。有谁知道这个的解决方案?谢谢!
如果您使用 Theme.Holo.Light 并希望在 3.2 之前的设备上使用 Theme.Holo.Light.NoTitleBarBar 变体,您可以将其添加到您的 styles.xml:
<style name="NoTitleBar" parent="@android:style/Theme.Holo.Light">
<item name="android:windowActionBar">true</item>
<item name="android:windowNoTitle">false</item>
然后将其设置为您的活动主题:
<activity android:theme="@style/NoTitleBar" ... />
在您的 oncreate 中执行此操作
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.main);
我找到了解决方案:差不多
<style name="MyActionBarStyle" parent="@android:style/Widget.Holo.ActionBar">
<item name="android:displayOptions"></item>
<item name="android:height">0dip</item>
</style>
我只是将它的大小调整为零并且它可以工作。