知识点
postDelayed(new Runnable())是否运行在主线程中?
答案 是的。
这个 new Runnable() 依附于创建Handler的线程,
代码如下
在绝对的UI线程中打印线程ID:
System.out.println("UI Thread = " + Thread.currentThread().getId());
下面在posdelayed中打印运行线程的ID:
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
System.out.println("Handler Thread = " + Thread.currentThread().getId());
ImageUtil.deleteImageFromSDCard(imgPath);
}
}, 3000);
最后打印如下:
07-09 10:47:24.110 17026-17026/com.spd.sinoss I/System.out: UI Thread = 1
07-09 10:47:27.111 17026-17026/com.spd.sinoss I/System.out: Handler Thread = 1
可以看出来,它们两个程序都是运行在主线程中的。
方法的官方解释是:
The runnable will be run on the thread to which this handler is attached.
既是说,这个开启的runnable会在这个handler所依附线程中运行,而这个handler是在UI线程中创建的,所以
自然地依附在主线程中了。
postDelayed(new Runnable()) 而没有重新生成新的 New Thread()