全屏显示

方法一 AndroidManifest.xml

android:theme="@style/AppTheme" 语句
将其修改为 android:theme="@style/Theme.xxx"

styles.xml 中定义 Theme.xxx :

1
2
3
4
<style name="Theme.NoTitle_FullScreen" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowNoTitle">true</item>
<item name="android:windowFullscreen">true</item>
</style>

方法二 MainActivity

1
2
3
4
5
//去除默认标题栏
ActionBar actionBar=getSupportActionBar();
if(actionBar!=null){
actionBar.hide();
}