#笔记#去掉activity的头(去掉标题栏)
方式一:每个类都需要去添加此代码
在setContentView(R.layout.xx);
前设置以下代码
requestWindowFeature(Window.FEATURE_NO_TITLE);
方式二:统一去掉所有activity的头
android:theme="@android:style/Theme.Light.NoTitleBar"
这是老版本主题样式
解决方法:修改样式文件为
使用
android:theme="@style/AppTheme"
并Ctrl+鼠标左键进入修改为
<style name="AppTheme" parent="AppBaseTheme"> <!-- 在去头的同时,还保留高版本的样式主题 --> <item name="android:windowNoTitle">true</item> </style>
浙公网安备 33010602011771号