Android 判断当前thread 是否是UI thread

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 判断当前thread 是否是UI thread相关的知识,希望对你有一定的参考价值。

   在android 中判断当前的Thread是否是UI Thread 的方法:

  1.    

if (Looper.myLooper() == Looper.getMainLooper()) {
    // Current thread is the UI/Main thread
}        
 

  2.

if (Looper.getMainLooper().getThread() == Thread.currentThread()) {
    // Current thread is the UI/Main thread
}

 

 参考如下文章:其中还讲到了  runOnUiThread()  方法的用法。

http://codetheory.in/checkdetect-whether-current-thread-uimain-thread-android/

http://lak4cyut.blogspot.jp/2011/03/android-tip-activityrunonuithread.html

以上是关于Android 判断当前thread 是否是UI thread的主要内容,如果未能解决你的问题,请参考以下文章

android中asynctask和thread的区别

android binder驱动实现

1.7.2判断线程是否是停止状态

[转]Android限制只能在主线程中进行UI访问的实现原理

如何检测Android上的UI线程?

Android 判断当前语言环境是否是中文环境