I have this in my Logcat:
threadid=1 thread exiting with uncaught exception FATAL EXCENPTION : main
In fact i used a thread to send a http request and a UI thread.
I have this in my Logcat:
threadid=1 thread exiting with uncaught exception FATAL EXCENPTION : main
In fact i used a thread to send a http request and a UI thread.
Android implements only single thread environments. So if you try to communicate main thread from any separated thread from main UI thread this kind of error is obvious thing. you can use asynctask to do this