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

Android 如何判断当前线程是否是主线程

作者: 404Error | 来源:发表于2017-10-15 23:39 被阅读167次
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/imoztxtx.html