android学习笔记之handler(1)

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


Code

原文地址:https://www.cnblogs.com/tiankonguse/p/2614222.html