Skip to content

Instantly share code, notes, and snippets.

@yicr
Last active December 31, 2019 14:31
Show Gist options
  • Save yicr/22957c20d5019121e95a18b5fafb5981 to your computer and use it in GitHub Desktop.
Save yicr/22957c20d5019121e95a18b5fafb5981 to your computer and use it in GitHub Desktop.
Delay execute for Android
new Handler().postDelayed(new Runnable() {
    @Override
    public void run() {
        // enter code here
    }
}, 3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment