If you want to show a splash screen. http://www.anddev.org/simple_splash_screen_-_alternative-t815.html
You can get more info if you search with "splash screen" in this group. On Jan 25, 11:51 pm, "ho(AO4)" <[email protected]> wrote: > hi > I want to ask how can i solve it if i create "setContentView(new > AnimationView(this));" and i need to go the another page but used " > setContentView(R.layout.main);" > > setContentView(new AnimationView(this)); > > new Thread() > { > public void run() > { > try > { > sleep(5000); > } > catch (Exception e) > { > e.printStackTrace(); > } > finally > { > setContentView(R.layout.main); > } > } > }.start(); > } -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

