搜索
您的当前位置:首页正文

android 去掉顶部状态栏及全屏

来源:爱go旅游网

全屏显示去掉标题栏

新增如下代码

  <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
        <!-- 隐藏状态栏 -->
        <item name="android:windowFullscreen">true</item>
        <!-- 隐藏标题栏 -->
        <item name="android:windowNoTitle">true</item>
    </style>

效果如下图:

修改AndroidManifest.xml  application  android:theme 内容

android:theme="@style/AppTheme"

 

因篇幅问题不能全部显示,请点此查看更多更全内容

Top