Skip to content

Instantly share code, notes, and snippets.

@kasparsj
kasparsj / CountUpTimer.java
Created April 13, 2014 19:57
An infinite timer
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