Android 判断当前线程是否是主线程的两种方法

使用Looper判断,方法为: Looper.myLooper() != Looper.getMainLooper()

使用线程句柄判断,将主线程的Thread.currentThread()获取到主线程当前句柄,保存起来,在需要判断的时候调用Thread.currentThread()来与之比较,即可判断当前线程是否是主线程了。

你可能感兴趣的:(android,线程)