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.
私はアンドロイドの初心者です。カウントダウンタイマーの時計コンポーネントを開発する必要があります。コンポーネントはストップウォッチのように見えます。
これで私を助けてください。
ありがとうミニ。
を使用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 } };