Spalsh屏幕显示电池状态

时间:2016-09-02 19:48:59

标签: android splash-screen

我想隐藏顶部栏从启动画面1:[第一张图片] 2:[第二张图片],你可以看到这些是两个启动画面示例,我想隐藏鞋面栏上显示电池状态和image2上的其他内容,这也显示在我的应用程序

2 个答案:

答案 0 :(得分:0)

在Splashscreen活动下的Manifest文件中添加以下代码。

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

答案 1 :(得分:0)

当您使用AppCompat时,您必须在您的样式中包含以下代码行才能获得FullScreen。

<style name="Theme.AppCompat.Light.NoActionBar.FullScreen" parent="@style/Theme.AppCompat.Light">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>