-1

我是android的新手,我需要开发一个倒计时时钟组件。该组件看起来就像秒表。

请帮助我。

谢谢迷你。

4

1 回答 1

1

使用CountDownTimer你可以做到这一点,并且按时完成onFinish被称为。

new CountDownTimer(30000, 1000) {//here time completing is 30 seconds

        @Override
        public void onTick(long millisUntilFinished) {

         }
        @Override
        public void onFinish() {

        //finish here ,do stuff here
    }
};
于 2012-06-08T09:34:29.740 回答