[android-developers] Launch timeout has expired, giving up wake lock!

2011-06-24 Thread dario
Hello I tryed to start Activity from other Activity startActivity(Main.this,Game.class); and when Game activity is show on the screen after 1-2 sec its go left and make black screen and its write this warrning 05-17 10:07:24.819: WARN/ActivityManager(73): Launch timeout has expired, giving up

Re: [android-developers] Launch timeout has expired, giving up wake lock!

2011-06-24 Thread Dianne Hackborn
This means that your main thread is continually running, pumping message through its message queue without ever going idle. If that is what you want, there is nothing to fix. This is why the log message is a warning, not an error. On Fri, Jun 24, 2011 at 11:12 AM, dario ber...@gmail.com wrote: