Posting Toast message from a Thread

前端 未结 4 2143
温柔的废话
温柔的废话 2020-12-03 22:09

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

4条回答
  •  没有蜡笔的小新
    2020-12-03 22:11

    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.

提交回复
热议问题