隐藏导航栏,但在Android 3.0中显示Actionbar>

时间:2013-05-05 13:09:39

标签: android android-actionbar

我正在尝试隐藏导航栏(显示电池状态,时间,通知和其他内容),但我想保留操作栏。

我该如何管理?

 <item name="android:windowNoTitle">true</item>

这种方法隐藏了一切......

谢谢!

1 个答案:

答案 0 :(得分:1)

自己找到它:

// Hide the Status Bar
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);

来自另一个问题(android - How to Hide the stausbar