Skip to content

Instantly share code, notes, and snippets.

@GerganaT
Forked from danielgomezrico/Function.java
Created February 15, 2024 15:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GerganaT/f77df1861139064712d9d17df8203e71 to your computer and use it in GitHub Desktop.
Save GerganaT/f77df1861139064712d9d17df8203e71 to your computer and use it in GitHub Desktop.
Android - check if running on main thread
public boolean runningOnMainThread() {
return Looper.getMainLooper().getThread() == Thread.currentThread();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment