2012-05-16 131 views
1

我必須計算以小時,分鐘和秒爲單位的時差,並在每秒之後更新我啓動活動的時間。我正在使用此代碼。計算當前時間和未來時間之間的時差,每秒後

   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ķ

回答

0

我懷疑你的問題可能當你離開活動時,你並沒有刪除你的回調。我以稍微不同的方式使用postDelayed而不是scheduleAtFixedRate執行相同的事情,如下所示:

private Handler h = new Handler(); 
    private static final long TIME_EVERY_SECOND = 1000; 

    private Runnable onEverySecond = new Runnable() { 
      public void run() { 
       updateTime(); 
       h.postDelayed(onEverySecond, TIME_EVERY_SECOND); 
      } 
     }; 

     @Override 
     public void onPause() { 
      super.onPause(); 

      if (h != null) { 
       h.removeCallbacks(onEverySecond); 
      } 
     } 

     @Override 
     public void onResume() { 
      super.onResume(); 
      h.postDelayed(onEverySecond, TIME_EVERY_SECOND); 
     } 
+0

非常感謝Damian,我的問題已解決。自從多日以來,我一直陷於困境非常感謝你。 – Munazza

0

您應該使用runOnUiThread更新您的看法。

+0

非常感謝您的回覆Simon。 我試圖使用runOnUiThread來運行它,它沒有給我ANR Keydispatchtimeout,但它仍然太慢,並且出現黑屏,並且在Logcat中有如下消息。 05-17 00:32:40.573:W/ActivityManager(61):啓動超時已過,放棄喚醒鎖! HistoryRecord的活動空閒超時{406cd788 alarm.app/.AlarmAppActivity} HistoryRecord的活動銷燬超時{406cd788 alarm.app/.AllGoalsActivity} – Munazza