コード例 #1
0
ファイル: TimerObj.java プロジェクト: parkersavi/LaundryTimer
 public static void resetTimersInSharedPrefs(SharedPreferences prefs) {
   ArrayList<TimerObj> timers = new ArrayList<TimerObj>();
   getTimersFromSharedPrefs(prefs, timers);
   Iterator<TimerObj> i = timers.iterator();
   while (i.hasNext()) {
     TimerObj t = i.next();
     t.mState = TimerObj.STATE_RESTART;
     t.mTimeLeft = t.mOriginalLength = t.mSetupLength;
     t.writeToSharedPref(prefs);
   }
 }