Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@magdamiu
Created April 6, 2019 11:51
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 magdamiu/1a393958ca285fcd589778daf2eed05b to your computer and use it in GitHub Desktop.
Save magdamiu/1a393958ca285fcd589778daf2eed05b to your computer and use it in GitHub Desktop.
Delay the UI
new Handler().postDelayed(new Runnable() {
@Override public void run() {
// do what you want to do
}
}, 4000); // Delay in millis
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment