vote up -1 vote down star

I'm running Instrumentation in android which calls a view which takes a long time to update. In doing so, the ANR dialog box pops up, which interferes with the instrumentation which terminates with a WIN-DEATH message on the logcat. As far as my knowledge goes, there is no way for the instrumentation to acces the ANR, so I was wondering if there is any alternative way to turn it off/ increase the timeout period/ create a thread to handle the ANR, if so the interface that the thread would need to access.

Thanks in advance.

-Jay

flag
The act of updating the view is what's taking so long? Is this something that has to be run in the UI thread or is it a data update that can be moved to its own thread? – MattC Aug 24 at 18:55

1 Answer

vote up 6 vote down

http://developer.android.com/guide/practices/design/responsiveness.html

Move the long running code to a different thread and let the UI thread continue to handle updates (not handling updates is what causes the ANR). As long as you put a progress dialog or something up the user won't think the app has crashed.

link|flag
I was going to post this but thought "No, it's too obvious". :\ – MattC Aug 25 at 1:02
There is no such thing as an answer that is 'too obvious' :) People learn in different ways and paces. – Ben Sep 9 at 4:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.