Come You Tube .. inizialmente mostrano la schermata delle icone invece della schermata bianca. E dopo 2 secondi mostra la schermata iniziale.
prima crea un disegnabile XML in res / drawable.
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:drawable="@color/gray"/>
<item>
<bitmap
android:gravity="center"
android:src="@mipmap/ic_launcher"/>
</item>
</layer-list>
Successivamente, lo imposterai come sfondo della tua attività splash nel tema. Passa al tuo file styles.xml e aggiungi un nuovo tema per la tua attività splash
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowBackground">@drawable/background_splash</item>
</style>
</resources>
Nel tuo nuovo SplashTheme, imposta l'attributo di sfondo della finestra sul tuo disegnabile XML. Configura questo come tema della tua attività splash nel tuo AndroidManifest.xml:
<activity
android:name=".SplashActivity"
android:theme="@style/SplashTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
Questo collegamento dà quello che vuoi. procedura passo passo.
https://www.bignerdranch.com/blog/splash-screens-the-right-way/
AGGIORNARE:
La layer-list
può essere ancora più semplice come questo (che accetta anche drawable vettoriali per il logo centrato, a differenza del <bitmap>
tag):
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Background color -->
<item android:drawable="@color/gray"/>
<!-- Logo at the center of the screen -->
<item
android:drawable="@mipmap/ic_launcher"
android:gravity="center"/>
</layer-list>
onCreate
parte. Prova a "impostareContentView" in quell'attività e controlla se questo ritardo è passato.