Skip to content Skip to sidebar Skip to footer

Android: 'Splash Screen' Only Once

I have a Android application that requires a splash screen. I have a simple activity which shows the splash screen and after a number of seconds, it starts the 'main' activity. Now

Solution 1:

Set android:noHistory="true" to the activity entry at the AndroidManifest.xml. That will prevent the activity from being saved on the stack.


Post a Comment for "Android: 'Splash Screen' Only Once"