I\'m new here and new to Android Development, I Have a question regarding the Android CountDownTimer. How am I able to use Android\'s CountDownTimer, to count down to a specific
Date currentDate=new Date();
Date endDate=new Date();
long difference = endDate.getTime() - currentDate.getTime();
new CountDownTimer(difference, 1000) {
public void onTick(long millisUntilFinished) {
}
public void onFinish() {
System.out.println("Done");
}
}.start();