在启动屏幕活动期间进入全屏状态

时间:2018-06-26 14:57:34

标签: android fullscreen splash-screen statusbar navigationbar

我目前正尝试在启动屏幕Activity期间进入全屏模式。我正在使用style这样设置,它是在Activity上这样设置的:

style.xml

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

AndroidManifest.xml

<activity
    android:name=".Activities.SplashScreenActivity"
    android:noHistory="true"
    android:screenOrientation="portrait"
    android:theme="@style/SplashTheme">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>

您可能会建议以编程方式执行此操作,但是我已经尝试了thisthisthisthisthis和{{ 3}}链接。目前,没有任何一种编程解决方案可用于我-将每个建议的修复都放在onResume的{​​{1}}或onCreate中,但是状态和导航栏仍然可见。但是,当使用我的自定义splashActivity.java时,它仅隐藏状态栏,导航栏保持可见。到目前为止,我在xml文件中尝试过的工作:使用样式的不同父项,不使用背景可绘制对象,从style中删除了screenOrientationnoHistory。我很确定我在这里遗漏了一些东西,但是我看不到。如果需要,可以共享更多代码。预先感谢!

1 个答案:

答案 0 :(得分:0)

这是我的SplashScreenActivity样式:

<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
    <item name="android:windowBackground">@drawable/splash_logo_drawable</item>
</style>

我仅使用属性windowBackground