Exit Button for Andengine

my game starts with SplashActivity.And 3 seconds later. MenuActivity launches as intended automatically. There is a button to exit MenuActivity. When I clicked it, complete (), and the game will return to SplashActivity without leaving the full game. I want: when I press the button, the game completes the exit. What can I do?

+3
source share
1 answer

when you leave your SplashActivity by calling the MenuActivity function, be sure to end the call () after calling your MenuActivity

+3
source

All Articles