I have a gui thread starting a new thread to do some busy things. The GUI thread will wait the worker thread to be completed, in the mean time the GUI need to be responsive.
Psedo code:
main thread:
start_thread(); wait_thread_done();
work thread:
doing_sth(); notify_main_thread();
What is the easiest way to do this in android?
