private void scheduleAndUpdateLastSyncedTime() {
   final String lastSynced = getLastSyncedString(fxAccount.getLastSyncedTimestamp());
   syncNowPreference.setSummary(lastSynced);
   handler.postDelayed(
       lastSyncedTimeUpdateRunnable, LAST_SYNCED_TIME_UPDATE_INTERVAL_IN_MILLISECONDS);
 }