Skip to content

Instantly share code, notes, and snippets.

@kenota
Created July 14, 2012 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kenota/3111727 to your computer and use it in GitHub Desktop.
Save kenota/3111727 to your computer and use it in GitHub Desktop.
sendMessageDelayed code
public final boolean sendMessageDelayed(Message msg, long delayMillis) {
if (delayMillis < 0) {
delayMillis = 0;
}
return sendMessageAtTime(msg, SystemClock.uptimeMillis() + delayMillis);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment