日拱一卒(五十三)

Android判断是否运行在主线程:

(1)通过Looper:

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

(2)通过looper中的Thread:

Thread.currentThread() == Looper.getMainLooper().getThread()

 

你可能感兴趣的:(android)