android去除标题栏及状态栏

总共有三种方式:

1)在代码中实现

在onCreate()方法中添加下面的的代码(一定要写在setContentView()前面):

//去掉标题栏
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
//设置全屏
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);


2)在清单文件AndroidManifest.xml文件里的application下修改
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"


3)在style.xml文件中定义

然后在AndroidManifest.xml文件里的application下引用
android:theme="@style/AppTheme.NoActionBar"

你可能感兴趣的:(android)