0

我有每 1 秒安排一次的计时器,由于我们不能在 timertask 中敬酒,所以我使用了 handler.post()。但是这段代码破坏了我的应用程序:

    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_game);

    handler = new Handler() {
        @Override
        public void handleMessage(Message msg) {
            String text = (String) msg.obj;
            sec_view.setText(text);
        }
    };

    MyTimerTask myTask = new MyTimerTask();
    timer = new Timer();
    timer.schedule(myTask, 1000, 1000);
}

Runnable makeToast = new Runnable() {
    public void run() {
        Toast.makeText(null, "qwerty", Toast.LENGTH_LONG).show();
    }
};


class MyTimerTask extends TimerTask {
    public void run(){
        if(0 == --sec){
            handler.post(makeToast);  //breaks there
            timer.cancel();
        }
        Message msg = new Message();
        msg.obj = sec+" sekund";
        handler.sendMessage(msg);
    }
}

我可以使用其他任何东西来从 timertask 敬酒吗?

4

2 回答 2

1

目前您在.just中null作为 Context 传递,而不是 null 以显示 toastToast.makeText

Toast.makeText(Your_Activity.this, "qwerty", Toast.LENGTH_LONG).show();

并显示 Toast 或从 timertask 运行方法访问 UI 元素,使用runOnUiThread()作为

public void run() {
  Current_Activity.this.runOnUiThread(new Runnable() {
     @Override
     public void run() {
          //show your toast here
       }
    });
}
于 2013-01-20T07:31:04.490 回答
0

把吐司改成

Toast.makeText(getApplicationContext(), "qwerty", Toast.LENGTH_LONG).show();

然后在处理程序中的 void run 上方添加 @override 注释

于 2013-03-23T02:20:14.783 回答