隐藏导航栏


有4种方式

在mainfest中定义

android:theme="@android:style/Theme.NoTitleBar"

自定义style

使用代码

if (getSupportActionBar() != null){
   getSupportActionBar().hide();
}

使用代码2

this.requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);

参考文章:https://blog.csdn.net/daihuimaozideren/article/details/78224927

还有我这里报错
java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.

https://blog.csdn.net/ouyang_peng/article/details/51334761
解决方案就是自己继承activity或者使用下面的方式


文章作者: 小游
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 小游 !
  目录