我想在特定时间开始一项任务。为此,我使用runnable
和postDelayed
方法如下:
private Runnable mLaunchTask = new Runnable() {
public void run() {
try {
MY TASK
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
};
在我的代码中,我使用mLunchTask
如下:
mHandler = new Handler();
mHandler.postDelayed(mLaunchTask, myDelay*1000);
并myDelay
计算如下:
s = DateFormat.format("hh:mm:ss aaa", d.getTime());
cTime = s.toString(); // current Time
ch = Integer.parseInt(cTime.substring(0,2)); // current hour
cm = Integer.parseInt(cTime.substring(3,5)); // current minute
cs = Integer.parseInt(cTime.substring(6,8)); // current second
if (cTime.substring(9,11).equalsIgnoreCase("pm") && (ch<12) ) ch = ch+12;
myDelay=(desiredHour-ch)*3600+(desiredMinute-cm)*60 - cs;
if (myDelay<0) myDelay = 0;
和desiredHour
由desiredMinute
用户设置。期望MY TASK
从desiredHour
和desiredMinute
0 秒开始。然而,“我的任务以几秒钟的延迟开始,看起来是随机的。
根据上面的代码,是否有任何原因导致它没有在所需的确切时间开始?
谢谢