美文网首页
Android判断当前是否在主线程

Android判断当前是否在主线程

作者: 卡路fly | 来源:发表于2020-05-30 11:43 被阅读0次
public boolean isMainThread() {
    return Looper.getMainLooper() == Looper.myLooper();
}

public boolean isMainThread() {
    return Looper.getMainLooper().getThread() == Thread.currentThread();
}

public boolean isMainThread() {
    return Looper.getMainLooper().getThread().getId() == Thread.currentThread().getId();
}

相关文章

网友评论

      本文标题:Android判断当前是否在主线程

      本文链接:https://www.haomeiwen.com/subject/houczhtx.html