是的,标题差不多。我尝试了不同的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" ... />

07-28 01:49
查看更多