I am using the single-activity approach. I need to display a splash screen. For this I am using the following code:
<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowBackground">@drawable/splash_bg</item>
</style>
And in AndroidManifest:
<activity
android:theme="@style/SplashTheme"
android:name=".presentation.app.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
Everything works well, but I would like to slightly increase the duration of the splash screen, is it possible to do this?