0

在我的 onCreate() 方法中,我使用以下代码删除状态栏:

// Remove the status bar from the top
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

然而,当我启动应用程序时,我仍然可以看到状态栏一秒钟。我怎样才能防止这种情况?

4

2 回答 2

1

将以下属性添加到清单中的活动:

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
于 2012-06-09T18:03:12.370 回答
1

您必须在设置内容视图之前使用 requestWindowFeature

于 2012-06-09T18:09:20.823 回答