Re: [android-developers] Android Force close dialog

2010-07-17 Thread Kostya Vasilyev
Veradis, You can't prevent the ANR/FC dialog from appearing, since it's there for a reason. But you can eliminate its cause - your application taking up time in the UI thread, making it unresponsive. Android provides an easy to use class to perform lengthy operations in a background thread,

[android-developers] Android Force close dialog

2010-07-17 Thread veradis
Hi, In my app, i will be doing some multiple file upload to server. The app activity displays FORCE CLOSE dialog while server call is in progress. So, is it possible to manage the dialog from appearing. I will displaying proper messages to inform user the app is still running. Also is there is an