Hi Mark,

Very strange. I'm sending messages to the console and it really shows
only the onPause method, and not the onDestroy. I'm pretty sure
something changed (or maybe is a new bug in 2.2).

Anyway, i added a thread with a sleep that calls System.exit if the
app doesn't exit after a second.

         loader.finish();
         new Thread()
         {
            public void run()
            {
               try {sleep(1000);} catch (Exception e) {}
               AndroidUtils.debug("Forcing application to close.");
               System.exit(0);
            }
         }.start();

cheers

    guich

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to