Searched defs:onTick (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/os/
H A DCountDownTimer.java30 * public void onTick(long millisUntilFinished) {
40 * The calls to {@link #onTick(long)} are synchronized to this object so that
41 * one call to {@link #onTick(long)} won't ever occur before the previous
43 * {@link #onTick(long)} takes an amount of time to execute that is significant
65 * {@link #onTick(long)} callbacks.
97 public abstract void onTick(long millisUntilFinished); method in class:CountDownTimer
124 onTick(millisLeft);
126 // take into account user's onTick taking time to execute
129 // special case: user's onTick took more than interval to

Completed in 42 milliseconds