【发布时间】:2016-09-02 19:48:58
【问题描述】:
【问题讨论】:
标签: android splash-screen
【问题讨论】:
标签: android splash-screen
在您的 Manifest 文件中的 Splashscreen 活动下添加这行代码。
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
【讨论】:
当您使用 AppCompat 时,您必须在您的样式中包含以下代码行才能获得全屏。
<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>
【讨论】: