gpt4 book ai didi

java - android定时器异常onResume

转载 作者:行者123 更新时间:2023-12-02 07:32:15 24 4
gpt4 key购买 nike

我正在正确执行 Activity 的定时任务,如下所示。但是,当 Activity onResume 时,会抛出异常“计时器任务已计划”。任务执行后我取消计时器。怎么解决呢?谢谢

final Runnable setButton = new Runnable() {
public void run() {
myClass.aBridge.button_back.setVisibility(View.INVISIBLE);
timer.cancel();
}
};

TimerTask task = new TimerTask(){
public void run() {
webPush.this.runOnUiThread(setButton);
}
};

@Override
protected void onResume() {
super.onResume();

timer = new Timer();
timer.schedule(task, 5000);

}

任务在 onResume 之前调用一次:

        timer = new Timer();
timer.schedule(task, 5000);

最佳答案

每个 TimerTask 实例只能调用一次timer.schedule()。在安排新实例之前创建一个新实例。

编辑:对于您的代码,不要在定义 TimerTask 成员变量时对其进行初始化。相反,在您安排它之前,在 onResume() 中创建一个新实例。

关于java - android定时器异常onResume,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12746267/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com