Android 隐藏标题栏、状态栏
在Activity的OnCreate方法内setContentView()方法调用之前调用如下方法:
//隐藏标题栏、状态栏 private void HideStatusBar(){ requestWindowFeature(Window.FEATURE_NO_TITLE); //定义全屏参数 int flag=WindowManager.LayoutParams.FLAG_FULLSCREEN; //获取窗口对象 Window myWindow=this.getWindow(); //设置Flag标识 myWindow.setFlags(flag, flag); }