我目前正尝试在启动屏幕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>
您可能会建议以编程方式执行此操作,但是我已经尝试了this,this,this,this,this和{{ 3}}链接。目前,没有任何一种编程解决方案可用于我-将每个建议的修复都放在onResume
的{{1}}或onCreate
中,但是状态和导航栏仍然可见。但是,当使用我的自定义splashActivity.java
时,它仅隐藏状态栏,导航栏保持可见。到目前为止,我在xml文件中尝试过的工作:使用样式的不同父项,不使用背景可绘制对象,从style
中删除了screenOrientation
和noHistory
。我很确定我在这里遗漏了一些东西,但是我看不到。如果需要,可以共享更多代码。预先感谢!
答案 0 :(得分:0)
这是我的SplashScreenActivity样式:
<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowBackground">@drawable/splash_logo_drawable</item>
</style>
我仅使用属性windowBackground