android – 如何使用现有自定义主题隐藏XML活动的标题栏
作者:互联网
我想隐藏一些活动的标题栏.问题是我将一个样式应用于我的所有活动,因此我不能简单地将主题设置为@android:style / Theme.NoTitleBar.
使用NoTitleBar主题作为我的样式的父级将从我的所有活动中删除标题栏.
我可以在某处设置无标题样式项吗?
解决方法:
在onCreate()方法中执行此操作.
//Remove title bar
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
//Remove notification bar
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
//set content view AFTER ABOVE sequence (to avoid crash)
this.setContentView(R.layout.your_layout_name_here);
这指的是活动.
标签:titlebar,android,android-layout 来源: https://codeday.me/bug/20190911/1803416.html