Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to start an activity in background and show it afterwards?

I've two activities, one is the SplashActivity and the other is MainActivity, an activity containing a webview.

I need to load the webview when showing the splash screen. So I'm looking for a way to load the MainActivity in background in SplashActivity::onCreate();

If intend is directly called, the MainActivity is immediately brought to the front, as well as a stuck in the webview.

I looked up a lot of solutions about splash screen like this . However they don't initialize the MainActivity until the splash time expires.

like image 577
SolessChong Avatar asked May 30 '13 08:05

SolessChong


1 Answers

You could launch the MainActivity first and start the SplashActivity in onCreate() of MainActivity. After the required duration, you could just close the SplashActivity and MainActivity would reappear so that it would appear as if you have started Main from Splash.

Let me explain it -

In your MainActiviy use an intent and start SplashActivity by using startActivity and not startActivityForResult as you would not want to pass back the result from SplashActivity to MainActivity.

Now that you are in SplashActivity, start a thread and wait in the thread for the required duration and then call finish() so that SplashActivity will close and the previously started MainActivity comes to the foreground.

Hope this helps.

like image 142
user1721904 Avatar answered Oct 14 '22 09:10

user1721904