How to make Splash screen?

4

I'm developing an app for android using eclipse, in this app, when I start it, I needed to have a splash screen, that is, a screen with my logo, then wait for about 4 seconds, and go to the screen of login. How can I do this?

    
asked by anonymous 05.06.2014 / 19:50

1 answer

4

Yes, this "splash screen" is called Splash Screen (which is not even the Eclipse logo when you start it)

You can put the initial layout as the splash screen (fullscreen layout) and then in your source use Sleep or something similar: link link

After sleeping, you can make the next line of code change from layout to main layout.

    
05.06.2014 / 19:58