Skip to content

Instantly share code, notes, and snippets.

@vvsevolodovich
Created March 12, 2018 08:58
Show Gist options
  • Save vvsevolodovich/23b2c65fc2b60c8ef7a4f154b81b667a to your computer and use it in GitHub Desktop.
Save vvsevolodovich/23b2c65fc2b60c8ef7a4f154b81b667a to your computer and use it in GitHub Desktop.
Background with Handler
public class Background {
...
private final Handler mUiHandler;
public void postOnUiThread(final Runnable runnable) {
mUiHandler.post(runnable);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment