Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I know if the running code is executed in the main thread (UI thread). With Swing I use the isEventDispatchThread method...

share|improve this question

6 Answers

up vote 7 down vote accepted

Doesn't look like there is a method for that in the SDK. The check is in the ViewRoot class and is done by comparing Thread.currentThread() to a class member which is assigned in the constructor but never exposed.

If you really need this check you have several options to implement it:

  1. catch the android.view.ViewRoot$CalledFromWrongThreadException
  2. post a Runnable to a view and check Thread.currentThread()
  3. use a Handler to do the same

In general I think instead of checking whether you're on the correct thread, you should just make sure the code is always executed on the UI thread (using 2. or 3.).

share|improve this answer
+1 for (3) < padding for the 15 limit > – Will Dec 4 '09 at 9:39

Use Looper.getMainLooper().getThread() to get the UI thread. You can check if it is the current thread using the following expression:

Looper.getMainLooper().getThread() == Thread.currentThread()
share|improve this answer
4  
So just for the sake of explicitness, the actual check you can do is: (Looper.getMainLooper().getThread() == Thread.currentThread()) – greg7gkb Apr 23 '12 at 18:24

It is UI thread if:

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

Source: AOSP source code

share|improve this answer
Short and sweet. Losing the getThread() is neat. – ahcox Mar 6 '12 at 19:10
3  
Worth noting although bbalazs mentions its from ICS, this is supported from API 1 onwards. So should be safe for all devices! – Chris.Jenkins May 20 '12 at 19:57

You may also use runOnUiThread, it only requires a runnable that will be run in the ui thread

share|improve this answer
1  
Might be worth noting that if you do call runOnUiThread from the UI thread, the code will be executed in-line with the rest of your code. – stork Mar 1 '12 at 9:32

If you want to know if you are in the main thread, you could maybe try:

Context c = **Get a Context**;
Thread.currentThread() == c.getMainLooper().getThread();

Of course, I could be wrong, and this could totally blow your app up.

share|improve this answer
A quick test suggests that this works well. – cypressious May 18 '12 at 16:21

1 : Define a runnable for what do you want to call.

protected Runnable NetCMD_ActiveGyro = new Runnable() { public void run() { mMainActivity.NetCMD_ActiveGyro();
} };

2 : `from the thread just call

mMainActivity.runOnUiThread(NetCMD_ActiveGyro);`

That's it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.