标签: java android
如何通过使用“thread”让我的进程等到另一个进程完成 THX
答案 0 :(得分:4)
您可以使用join()
join()
Thread t = new Thread(new Runnable() { public void run() { //some code } }); t.start(); t.join();//this will wait until Thread t completes its execution