[android-developers] Re: How to disable 'Sorry! Activity YYY (in application XXXX) is not responding.

2009-03-31 Thread Tseng
Don't do heavy work in the main thread and put tasks which require much processing (or long loops) into a seperate backgroudn thread. http://developer.android.com/guide/practices/design/responsiveness.html#avoiding On Mar 30, 10:26 pm, ying lcs ying...@gmail.com wrote: Hi, Can you please

[android-developers] Re: How to disable 'Sorry! Activity YYY (in application XXXX) is not responding.

2009-03-31 Thread ying lcs
Thanks. I am trying to disable it so that it won't pop up while I am debugging via eclipse. Thank you for any tip. On Tue, Mar 31, 2009 at 12:13 PM, Tseng tseng.priv...@googlemail.com wrote: Don't do heavy work in the main thread and put tasks which require much processing (or long loops)