摘要:
Android去掉标题栏和全屏都是件很容易的事情,最常见的有两种方法:第一:在程序代码中实现Java代码this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);//去掉信息栏this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏this.getWin 阅读全文