Home
last modified time | relevance | path

Searched refs:recentsString (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Calendar/src/com/android/calendar/
DTimezoneAdapter.java239 String recentsString = prefs.getString(KEY_RECENT_TIMEZONES, null); in showInitialTimezones() local
240 if (recentsString != null) { in showInitialTimezones()
241 String[] recents = recentsString.split(RECENT_TIMEZONES_DELIMITER); in showInitialTimezones()
307 String recentsString = prefs.getString(KEY_RECENT_TIMEZONES, null); in saveRecentTimezone() local
309 if (recentsString == null) { in saveRecentTimezone()
313 Arrays.asList(recentsString.split(RECENT_TIMEZONES_DELIMITER))); in saveRecentTimezone()
320 recentsString = Utils.join(recents, RECENT_TIMEZONES_DELIMITER); in saveRecentTimezone()
321 Utils.setSharedPreference(mContext, KEY_RECENT_TIMEZONES, recentsString); in saveRecentTimezone()