How can I know if the running code is executed in the main thread (UI thread).
With Swing I use the isEventDispatchThread method...
|
|
||||
|
|
|
Doesn't look like there is a method for that in the SDK. The check is in the If you really need this check you have several options to implement it:
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.). |
|||
|
|
|
Use Looper.getMainLooper().getThread() to get the UI thread. You can check if it is the current thread using the following expression:
|
|||||
|
|
It is UI thread if:
Source: AOSP source code |
|||||||
|
|
You may also use runOnUiThread, it only requires a runnable that will be run in the ui thread |
|||||
|
|
If you want to know if you are in the main thread, you could maybe try:
Of course, I could be wrong, and this could totally blow your app up. |
|||
|
|
1 : Define a runnable for what do you want to call.
2 : `from the thread just call
That's it. |
|||
|
|