隐藏自定义主题Android中的通知栏

时间:2012-06-01 11:47:56

标签: android fullscreen android-notification-bar

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

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

1 个答案:

答案 0 :(得分:1)

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

将此代码添加到Android Manifest.xml