Reputation: 137
I followed the below link to show splash screen (which is a pop -up box) in my app.
http://www.codeproject.com/KB/android/AndroidSplash.aspx
When I launch the app it shows splash screen (pop -up box) which is a desired behaviour. But I want the main activity to be displayed behind when there is a splashscreen(pop-box). Please help me out.
Thanks
Upvotes: 0
Views: 463
Reputation: 6602
Perform both splash screen, and your activity task in a same activity ie, your main activity.
after setContentView(R.layout.main);
start the splash screen thread.
Upvotes: 1