在我的onCreate()方法中,我使用此代码删除状态栏:
// Remove the status bar from the top
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
然而,当我启动应用程序时,我仍然可以看到状态栏。我该如何防止这种情况?
答案 0 :(得分:1)
将以下属性添加到清单中的活动:
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
答案 1 :(得分:1)
在设置内容视图之前必须使用requestWindowFeature