Android判断当前线程是否是主线程的方法
方法一:使用Looper类判断
Looper.myLooper() == Looper.getMainLooper()
方法二:通过查看Thread类的当前线程
Thread.currentThread() == Looper.getMainLooper().getThread()
方法三:直接判断
"main".equals(Thread.currentThread().getName())
posted on 2016-05-20 20:14 天空很大,我们很小 阅读(1090) 评论(0) 编辑 收藏 举报