Home | History | Annotate | Download | only in calendar

Lines Matching refs:icicle

304     protected void onCreate(Bundle icicle) {
308 super.onCreate(icicle);
310 if (icicle != null && icicle.containsKey(BUNDLE_KEY_CHECK_ACCOUNTS)) {
311 mCheckForAccounts = icicle.getBoolean(BUNDLE_KEY_CHECK_ACCOUNTS);
328 // Get time from intent or icicle
332 if (icicle != null) {
333 timeMillis = icicle.getLong(BUNDLE_KEY_RESTORE_TIME);
334 viewType = icicle.getInt(BUNDLE_KEY_RESTORE_VIEW, -1);
355 if (icicle != null && intent != null) {
356 Log.d(TAG, "both, icicle:" + icicle.toString() + " intent:" + intent.toString());
358 Log.d(TAG, "not both, icicle:" + icicle + " intent:" + intent);
428 initFragments(timeMillis, viewType, icicle);
621 private void initFragments(long timeMillis, int viewType, Bundle icicle) {
658 } else if (icicle != null && icicle.containsKey(BUNDLE_KEY_EVENT_ID)) {
659 eventId = icicle.getLong(BUNDLE_KEY_EVENT_ID);
688 if (viewType == ViewType.AGENDA && icicle != null) {
690 icicle.getLong(BUNDLE_KEY_EVENT_ID, -1), viewType);