安卓:设置无标题和全屏
设置无标题方法
1.在代码中加入
//设置无标题
requestWindowFeature(Window.FEATURE_NO_TITLE);
//设置全屏
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.main);//一般放在这个的前面
2、全部界面,用皮肤设置 values\styles.xml
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<item name="android:windowNoTitle">true</item>
<item name="android:textColor">#ff0000E0</item>
</style>
第二种好些,可以直接在设计状态下无标题。