Skip to content
Advertisement

How to check if current thread is not main thread

I need to check if the thread running a certain piece of code is the main (UI) thread or not. How can I achieve this?

Advertisement

Answer

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

if this returns true, then you’re on the UI thread!

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement