Skip to content

Instantly share code, notes, and snippets.

@trevren11
Last active April 2, 2017 03:49
Show Gist options
  • Save trevren11/bdc2d4f4b1c55043e0193b7e45f7e157 to your computer and use it in GitHub Desktop.
Save trevren11/bdc2d4f4b1c55043e0193b7e45f7e157 to your computer and use it in GitHub Desktop.
Android Timer method
// 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