天天看点

Android 不显示标题栏和全屏的设置方法

Android 不显示标题栏和全屏的设置方法

1.在Manifest.xml中设置

不显示标题栏

android:theme="@android:style/Theme.NoTitleBar"

全屏

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

2.在代码中实现

不显示标题栏

this.requestWindowFeature(Window.FEATURE_NO_TITLE);

全屏

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);

本文转载自:http://tanqi0508.blog.163.com/blog/static/18835577720127631539512/