jeanboydev/Android-ReadTheFuckingSourceCode

Handler问题

ad5566 opened this issue · 0 comments

// 使用方式二:handler.post()
handler.post(new Runnable() {
@OverRide
public void run() {
// 运行在子线程中...
}
});

这个不是运行在主线程吗?