android中如何隐藏应用程序标题栏和通知栏

如果想同时隐藏标题栏和通知栏的话:
方法 1、 在manifest里面的activity加        
      
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
 
 方法2、  在activity的onCreate方法写入以下代码:
this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏 
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
  WindowManager.LayoutParams.FLAG_FULLSCREEN);//去掉信息栏
 
如果只是想隐藏标题栏的话:
方法 1、 在manifest里面的activity加              
      
android:theme="@android:style/Theme.NoTitleBar"
 
 方法2、  在activity的onCreate方法写入以下代码:
this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏 
原文地址:https://www.cnblogs.com/kakafra/p/2707768.html