我必須計算以小時,分鐘和秒爲單位的時差,並在每秒之後更新我啓動活動的時間。我正在使用此代碼。計算當前時間和未來時間之間的時差,每秒後
private Handler handler=new Handler() ;
private Runnable updateTimeTask = new Runnable() {
@Override
public void run() {
updateTime();
//handler.postDelayed(updateTimeTask, 1000);
}
}; @Override
protected void onResume() {
super.onResume();
int delay = 1000; // delay for 1 sec.
int period = 1000; // repeat every 4 sec.
Timer timer = new Timer();
timer.scheduleAtFixedRate(new TimerTask() {
public void run() {
handler.post(updateTimeTask);
}
}, delay, period); }
private void updateTime() {
final TextView time = (TextView) findViewById(R.id.txtViewTime);
final TextView date = (TextView) findViewById(R.id.txtViewAlarmDesc);
pref = new Prefs(this);
String goal_dateTime= pref.getValue("first_goal_dateTime", "");
Date d1 = Utils.strToDate(goal_dateTime);
Calendar cal = Calendar.getInstance();
if(d1!=null && d1.after(new Date()))
{
cal.setTime(d1);
}
Date cur = new Date();
Calendar cal_cur = Calendar.getInstance();
cal_cur.setTime(cur);
final SimpleDateFormat formatterTime = new SimpleDateFormat("H:mm");
long milliseconds1 = cal.getTimeInMillis();
long milliseconds2 = cal_cur.getTimeInMillis();
long diff = milliseconds1 - milliseconds2;
long diffSeconds = diff/1000;
long diffMinutes = diff/(60 * 1000);
long diffHours = diff/(60 * 60 * 1000);
long diffDays = diff/(24 * 60 * 60 * 1000);
time.setText(diffHours + " : " + diffMinutes+" : "+diffSeconds);
date.setText(String.valueOf(diffDays+" days left to complete goal"));
}
但是,當我第一次開始的活動,它工作正常,當我開始從它的另一個活動,並再次到它,應用程序只是掛起,出現黑屏,並且多少時間之後它給我的錯誤像ANR,keydispatchtimeout。
我已經嘗試了幾種解決方案,如在一個單獨的線程中調用我的錄入(),但它給了我一個錯誤,「只有創建視圖層次可以觸摸其觀點原來的線程。」
任何形式的幫助提前將不勝感激。非常感謝。
問候, Munazzaķ
非常感謝Damian,我的問題已解決。自從多日以來,我一直陷於困境非常感謝你。 – Munazza