我正在尝试隐藏导航栏(显示电池状态,时间,通知和其他内容),但我想保留操作栏。
我该如何管理?
<item name="android:windowNoTitle">true</item>
这种方法隐藏了一切......
谢谢!
答案 0 :(得分:1)
自己找到它:
// Hide the Status Bar
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
来自另一个问题(android - How to Hide the stausbar)