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

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

Completed in 54 milliseconds