1

我为我的 android 应用程序设计了一个自定义主题。我希望应用程序全屏显示,但也显示 TitleBar。我想隐藏/禁用 NotificationBar 但保留 TitleBar。我厌倦了这段代码。但这隐藏了 TitleBar 而不是 NotificationsBar。

this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
4

1 回答 1

1
      requestWindowFeature(Window.FEATURE_NO_TITLE); 
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.main);

将此代码添加到您的 Android Manifest.xml

于 2012-06-01T11:50:03.847 回答