答案 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>