Replies: 2 comments 7 replies
-
Have you looked into using this approach: |
Beta Was this translation helpful? Give feedback.
-
I tried to perform the above procedures for a background: splash_background.xml in drawable: <item>
<bitmap
android:gravity="fill"
android:src="@drawable/splash_image"/>
</item> styles.xml in values: <resources>
<style name="Theme.NoShadow" parent="android:style/Theme.NoTitleBar.Fullscreen">
<item name="android:windowBackground">@drawable/splash_background</item>
</resources> This only works on older devices, especially with the older Android version. <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="35" /> I also added the following folders: values, values-v31, values-v32, values-v32, values-v33, values-v34, values-v35 I'm wrong about what? Gaalxy S24 Ultra It never shows a slapscreen, it shows my app icon and starts it. Thank You! |
Beta Was this translation helpful? Give feedback.
-
Would we ever be able to set a custom startup splash screen on Android instead of the solid black screen that can last for over 10 seconds on older phones? I know it used to be recommended to change app_entry/res/values/styles.xml, but that does not seem to work anymore. It can reliably change the background to another solid color, but it does not seem to let you set an image at all.
Could it hypothetically be possible for someone to make an ANE that allows custom splash screens on Android?
Beta Was this translation helpful? Give feedback.
All reactions