I am wondering if this is the best way to make a timer of 1 minute on Android:
new CountDownTimer(60000, 1000) {
public void onTick(long millisUntilFinished) {
}
public void onFinish() {
}
}.start();