[android-developers] Re: Avoid app force closed issue.

2013-12-03 Thread 12169
Hi, first make your http connection in AsynTask and then properly debugg your application. On Tuesday, December 3, 2013 10:38:40 AM UTC+5:30, sree wrote: Hi friends, some times i am faceing a problum.That is when i am getting data from server using web services ,some times my app is

[android-developers] Re: Avoid app force closed issue.

2013-12-02 Thread Sourav Howlader
Hi Sree, Most important thing is, you should do all of your long running processes in child thread. If you do your web services operations in main thread, then you will get ANR as its a time consuming process and may not complete the operation in time. Regards, Sourav -- You received

[android-developers] Re: Avoid app force closed issue.

2013-12-02 Thread Martin Krischik
Am Dienstag, 3. Dezember 2013 06:08:40 UTC+1 schrieb sree: how can i handle this problum and how can i avoid app force close problum. It is not *a* problem. If you have to ask on that general level it might be a multitude of problems all resulting from writing sloppy code. (Side-note: The