Created
March 5, 2014 15:57
-
-
Save azhtom/9370001 to your computer and use it in GitHub Desktop.
TimeOut in Android
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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