android学习笔记之handler(1)

这个程序证明了用handler.post(r);不能产生多线程,而用Thread t = new Thread(r);t.start();才是真正的多线程

 


Code

你可能感兴趣的:(Android学习)