ребят кто шарит как убрать actionbar вот theme.xml splash screen… — Android Developers — TG.ME

ребят кто шарит как убрать actionbar
вот theme.xml splash screen работате норм
но после прогрузки splash screen висит этот
actionBar

<?xml version="1.0" encoding="utf-8"?>
<resources>

<style name="AppTheme.NoActionBar" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowFullscreen">true</item>
</style>

<style name="Theme.Spotify.Splash" parent="Theme.SplashScreen">
<item name="android:windowSplashScreenAnimatedIcon">@drawable/ic_splash_logo</item>
<item name="android:windowSplashScreenAnimationDuration">1000</item>
<item name="android:windowSplashScreenBehavior">icon_preferred</item>
<item name="postSplashScreenTheme">@style/AppTheme.NoActionBar</item>
</style>
</resources>
August 26, 2026