use thread to do long background operations and use handler to post back UI updates ^_^
On Sat, Nov 8, 2008 at 3:16 PM, joshbeck <[EMAIL PROTECTED]> wrote: > > Thank You. > That helps > > > > On Nov 8, 1:58 pm, Romain Guy <[EMAIL PROTECTED]> wrote: >> Hi, >> >> No, you cannot change this timeout. If you see this message that means >> your application is blocking the UI (or main) thread. The problem is >> in your implementation; you should be using background threads >> instead. Any "long" operation (anything that might take more than half >> a second or so; and even half a second is very long) should be >> performed in a background thread. >> >> On Sat, Nov 8, 2008 at 10:59 AM, joshbeck <[EMAIL PROTECTED]> wrote: >> >> > Is there a way to increase the system timeout so it won't throw the >> > 'Force Close' screen so soon. >> > I have an app that relies on web requests, and if they take too long, >> > the user gets the Force Close >> > prompt. (Push Wait and it works fine.) >> >> > Thanks! >> > Josh Beck >> >> -- >> Romain Guywww.curious-creature.org > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

