for (int i = 0; i < ut.length; i++) {
ut[i].cancel();
}
+ runningtasks = 0;
Time tm = new Time();
tm.setToNow();
tvs.setText(R.string.failtry);
tvt = (TextView)findViewById(R.id.time);
tvd = (TextView)findViewById(R.id.date);
tvs = (TextView)findViewById(R.id.timestamp);
+ ut = new UpdateTarget[] {
+ new UpdateTarget((TextView)findViewById(R.id.phonecall),
+ new PhoneLog(res, store)),
+ new UpdateTarget((TextView)findViewById(R.id.location),
+ new LastLocation(res, store))
+ };
}
/** Called when reactivated */
} else {
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
}
- ut = new UpdateTarget[] {
- new UpdateTarget((TextView)findViewById(R.id.phonecall),
- new PhoneLog(res, store)),
- new UpdateTarget((TextView)findViewById(R.id.location),
- new LastLocation(res, store))
- };
- Log.v(TAG, "created UI, about to start update tasks");
mHandler.post(updateClock);
mHandler.post(updateCal);
mHandler.post(updateInfo);
- Log.v(TAG, "created UI, update tasks created");
+ Log.v(TAG, "update tasks scheduled");
}
/** Called when put to background */
super.onPause();
Log.v(TAG, "going background");
resetInfo.run();
+ mHandler.removeCallbacks(updateClock);
+ mHandler.removeCallbacks(updateCal);
+ mHandler.removeCallbacks(updateInfo);
}
/** Called when the activity is destroyed. */
public void onDestroy() {
super.onDestroy();
Log.v(TAG, "going down");
- mHandler.removeCallbacks(updateClock);
- mHandler.removeCallbacks(updateCal);
- mHandler.removeCallbacks(updateInfo);
- if (connChangedRegistered) {
- unregisterReceiver(connChanged);
- connChangedRegistered = false;
- }
- if (managewifi) {
- boolean wifion = wifiman.setWifiEnabled(false);
- Log.v(TAG, "disabling wifi result " + wifion);
- }
}
/** Called when the menu is activated. */