My application launches a thread to query the web for some data. I want to display a Toast message when nothing is found, but my application always crashes.
I\'ve t
Try implementing a class extending "Handler" in your Activity class and send a Message to it from the other thread. Explained more in detail here:
http://www.anddev.org/the_pizza_timer_-_threading-drawing_on_canvas-t126.html
And please, when asking a question like this, include the stack trace you are getting.