将倒计时作为线程

时间:2015-11-27 15:03:26

标签: android multithreading button countdown

我在Eclipse中使用了这个代码并且它运行得很好,但是当我在android studio中使用相同的代码时,即使没有出现红线,手机上也会出现结果错误。有人知道如何解决它吗?

class Allthread extends Thread{                                 

    public void run(){

        new CountDownTimer(30000, 1000) {

            public void onTick(long millisUntilFinished) {
                box2.setText("00:" + millisUntilFinished / 1000);
            }

            public void onFinish() {
                box2.setText("Time's Up!");
            }
        };
    }
}

public void buttonOnClick(View view) {
    Allthread T2 = new Allthread();                       
    T2.start();
}

0 个答案:

没有答案