prathima
prathima

Reputation: 137

splashscreen doesn't show main activity in android

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

Answers (1)

Noby
Noby

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

Related Questions