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?
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?
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.