我需要检查运行某段代码的线程是否是主(UI)线程。我怎样才能做到这一点呢?


当前回答

你可以在android DDMS logcat中验证它,其中进程id将是相同的,但线程id将不同。

其他回答

简单的Toast消息也可以作为快速检查。

除了之前所有的答案

inline fun <T> ensureNotOnMainThread(block: () -> T): T {
    check(Thread.currentThread() != Looper.getMainLooper().thread) { "This function cannot be called on main thread" }
    return block()
}

允许用它包装任何方法,示例如下:

fun isInDataBase(id: String) = ensureNotOnMainThread { db.contains(id) }

您可以尝试Thread.currentThread().isDaemon()

Looper.myLooper() == Looper.getMainLooper()

如果返回true,那么你在UI线程上!

只需记录这一行,它应该打印“main”。

Thread.currentThread () . name