Skip to content Skip to sidebar Skip to footer

Android: Splash: Why I Always See Splash Screen When App Is Resumed

I just created my first proper android app and ran into the splash screen issue. Whenever my app comes into foreground, splash screen is displayed first and then the last opened ac

Solution 1:

Remove this android:noHistory="true" from all the activities.

A value of "true" means that the activity will not leave a historical trace. It will not remain in the activity stack for the task, so the user will not be able to return to it

Post a Comment for "Android: Splash: Why I Always See Splash Screen When App Is Resumed"