【Android】如何去掉默认标题栏
1、在AndroidManifest.xml文件中修改并添加以下代码

android:theme="@style/Theme.AppCompat.NoActionBar"
2、在你想要去掉标题栏的页面Java文件添加相应代码(注意位置)


//去除默认标题栏 ActionBar actionBar=getSupportActionBar(); if(actionBar!=null){ actionBar.hide(); }
3、显示效果

1、在AndroidManifest.xml文件中修改并添加以下代码

android:theme="@style/Theme.AppCompat.NoActionBar"
2、在你想要去掉标题栏的页面Java文件添加相应代码(注意位置)


//去除默认标题栏 ActionBar actionBar=getSupportActionBar(); if(actionBar!=null){ actionBar.hide(); }
3、显示效果
