有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或者使用下面的方式