Android去除顶部导航条

经过,今天项目需要去除顶部导航条,查了很多,总结一下就是2种情况

第一种:使用requestWindowFeature(Window.FEATURE_NO_TITLE);,前提要求是必须在Activity下

但是这个项目,我是使用Fragement,里面有一个方法getSupportFragmentManager();在Activity下无法使用,头都要秃了

第二种:在styles.xml中将AppTheme里面的参数parent改为Theme.AppCompat.Light.NoActionBar

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

 

----------------------------------------------------------------------------------------------------------------------------------------------------------------

网上还有一种教程在AppCompatActivity下可以使用的方法,但是亲测无用

    protected void onCreate(Bundle savedInstanceState) {
        //去掉系统状态栏
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
        super.onCreate(savedInstanceState);
        setContentView(R.layout.maincontainer);
        initView();
    }

 

Android去除顶部导航条

上一篇:Android项目中的assert文件下的html里的js交互


下一篇:Android Studio 插件 ADBWifi 无线调试真机