TrainingSkillCountDown.java :  » App » eveinfo » com » eveinfo » tools » Android Open Source

Android Open Source » App » eveinfo 
eveinfo » com » eveinfo » tools » TrainingSkillCountDown.java
package com.eveinfo.tools;

import android.os.CountDownTimer;
import android.widget.TextView;


public class TrainingSkillCountDown extends CountDownTimer {

  private TextView tv;

  public TrainingSkillCountDown(TextView tv, long millisInFuture, long countDownInterval) {
    super(millisInFuture, countDownInterval);
    this.tv = tv;
  }

  @Override
  public void onFinish() {
    tv.setText("done!");
  }

  @Override
  public void onTick(long millisUntilFinished) {
    tv.setText(Tools.convertTime(millisUntilFinished, true));
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.