Last active
April 2, 2017 03:49
-
-
Save trevren11/bdc2d4f4b1c55043e0193b7e45f7e157 to your computer and use it in GitHub Desktop.
Android Timer method
This file contains hidden or 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
// I use this often enough to write down somewhere | |
new CountDownTimer(2000,1000){ | |
public void onTick(long millisUntilFinished){} | |
public void onFinish(){} | |
}.start(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment