Skip to content

Instantly share code, notes, and snippets.

@azhtom
Created March 5, 2014 15:57
Show Gist options
  • Save azhtom/9370001 to your computer and use it in GitHub Desktop.
Save azhtom/9370001 to your computer and use it in GitHub Desktop.
TimeOut in Android
new android.os.Handler().postDelayed(
new Runnable() {
public void run() {
Log.i("tag", "This'll run 300 milliseconds later");
}
}, 300);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment