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
| import android.os.CountDownTimer; | |
| abstract public class CountUpTimer | |
| { | |
| private CountDownTimer countDownTimer; | |
| private int countDownCycle; | |
| public CountUpTimer(long countUpInterval) { | |
| countDownTimer = new CountDownTimer(Long.MAX_VALUE, countUpInterval) { | |
| @Override |