Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是android的新手,我需要开发一个倒计时时钟组件。该组件看起来就像秒表。
请帮助我。
谢谢迷你。
使用CountDownTimer你可以做到这一点,并且按时完成onFinish被称为。
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 } };