Skip to content

Instantly share code, notes, and snippets.

@danielgomezrico
Created May 9, 2015 16:05
Show Gist options
  • Save danielgomezrico/4cdf077cc9b47dd0a1b0 to your computer and use it in GitHub Desktop.
Save danielgomezrico/4cdf077cc9b47dd0a1b0 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