/* * Copyright (C) 2008 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.calendar; //a21654 import java.util.Random; import java.lang.Object; import android.content.Context; import static android.provider.Calendar.EVENT_BEGIN_TIME; import static android.provider.Calendar.EVENT_END_TIME; import com.android.common.Rfc822InputFilter; import com.android.common.Rfc822Validator; import android.app.Activity; import android.app.AlertDialog; import android.app.DatePickerDialog; import android.app.ProgressDialog; import android.app.TimePickerDialog; import android.app.DatePickerDialog.OnDateSetListener; import android.app.TimePickerDialog.OnTimeSetListener; import android.content.AsyncQueryHandler; import android.content.ContentProviderOperation; import android.content.ContentProviderResult; import android.content.ContentResolver; import android.content.ContentUris; import android.content.ContentValues; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.content.OperationApplicationException; import android.content.SharedPreferences; import android.content.ContentProviderOperation.Builder; import android.content.DialogInterface.OnCancelListener; import android.content.DialogInterface.OnClickListener; import android.content.res.Resources; import android.database.Cursor; import android.net.Uri; import android.os.Bundle; import android.os.RemoteException; import android.pim.EventRecurrence; import android.provider.Calendar.Attendees; import android.provider.Calendar.Calendars; import android.provider.Calendar.Events; import android.provider.Calendar.Reminders; import android.text.Editable; import android.text.InputFilter; import android.text.TextUtils; import android.text.format.DateFormat; import android.text.format.DateUtils; import android.text.format.Time; import android.text.util.Rfc822Token; import android.text.util.Rfc822Tokenizer; import android.util.Log; import android.view.LayoutInflater; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.view.Window; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.Button; import android.widget.CheckBox; import android.widget.CompoundButton; import android.widget.DatePicker; import android.widget.ImageButton; import android.widget.LinearLayout; import android.widget.MultiAutoCompleteTextView; import android.widget.ResourceCursorAdapter; import android.widget.Spinner; import android.widget.TextView; import android.widget.TimePicker; import android.widget.Toast; import java.util.ArrayList; import java.util.Arrays; import java.util.Calendar; import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import java.util.LinkedHashSet; import java.util.TimeZone; public class EditEvent extends Activity implements View.OnClickListener, DialogInterface.OnCancelListener, DialogInterface.OnClickListener { private static final String TAG = "EditEvent"; private static final boolean DEBUG = true; /** * This is the symbolic name for the key used to pass in the boolean * for creating all-day events that is part of the extra data of the intent. * This is used only for creating new events and is set to true if * the default for the new event should be an all-day event. */ public static final String EVENT_ALL_DAY = "allDay"; private static final int MAX_REMINDERS = 5; private static final int MENU_GROUP_REMINDER = 1; private static final int MENU_GROUP_SHOW_OPTIONS = 2; private static final int MENU_GROUP_HIDE_OPTIONS = 3; private static final int MENU_ADD_REMINDER = 1; private static final int MENU_SHOW_EXTRA_OPTIONS = 2; private static final int MENU_HIDE_EXTRA_OPTIONS = 3; private static final String[] EVENT_PROJECTION = new String[] { Events._ID, // 0 Events.TITLE, // 1 Events.DESCRIPTION, // 2 Events.EVENT_LOCATION, // 3 Events.ALL_DAY, // 4 Events.HAS_ALARM, // 5 Events.CALENDAR_ID, // 6 Events.DTSTART, // 7 Events.DURATION, // 8 Events.EVENT_TIMEZONE, // 9 Events.RRULE, // 10 Events._SYNC_ID, // 11 Events.TRANSPARENCY, // 12 Events.VISIBILITY, // 13 Events.OWNER_ACCOUNT, // 14 Events.HAS_ATTENDEE_DATA, // 15 }; private static final int EVENT_INDEX_ID = 0; private static final int EVENT_INDEX_TITLE = 1; private static final int EVENT_INDEX_DESCRIPTION = 2; private static final int EVENT_INDEX_EVENT_LOCATION = 3; private static final int EVENT_INDEX_ALL_DAY = 4; private static final int EVENT_INDEX_HAS_ALARM = 5; private static final int EVENT_INDEX_CALENDAR_ID = 6; private static final int EVENT_INDEX_DTSTART = 7; private static final int EVENT_INDEX_DURATION = 8; private static final int EVENT_INDEX_TIMEZONE = 9; private static final int EVENT_INDEX_RRULE = 10; private static final int EVENT_INDEX_SYNC_ID = 11; private static final int EVENT_INDEX_TRANSPARENCY = 12; private static final int EVENT_INDEX_VISIBILITY = 13; private static final int EVENT_INDEX_OWNER_ACCOUNT = 14; private static final int EVENT_INDEX_HAS_ATTENDEE_DATA = 15; private static final String[] CALENDARS_PROJECTION = new String[] { Calendars._ID, // 0 Calendars.DISPLAY_NAME, // 1 Calendars.OWNER_ACCOUNT, // 2 Calendars.COLOR, // 3 }; private static final int CALENDARS_INDEX_DISPLAY_NAME = 1; private static final int CALENDARS_INDEX_OWNER_ACCOUNT = 2; private static final int CALENDARS_INDEX_COLOR = 3; // private static final String CALENDARS_WHERE = Calendars.ACCESS_LEVEL + ">=" + // Calendars.CONTRIBUTOR_ACCESS + " AND " + Calendars.SYNC_EVENTS + "=1"; private static final String CALENDARS_WHERE = Calendars.ACCESS_LEVEL + ">=" + // Calendars.CONTRIBUTOR_ACCESS + " AND " + Calendars.SYNC_EVENTS + "=1"; Calendars.CONTRIBUTOR_ACCESS ; private static final String[] REMINDERS_PROJECTION = new String[] { Reminders._ID, // 0 Reminders.MINUTES, // 1 }; private static final int REMINDERS_INDEX_MINUTES = 1; private static final String REMINDERS_WHERE = Reminders.EVENT_ID + "=%d AND (" + Reminders.METHOD + "=" + Reminders.METHOD_ALERT + " OR " + Reminders.METHOD + "=" + Reminders.METHOD_DEFAULT + ")"; private static final String[] ATTENDEES_PROJECTION = new String[] { Attendees.ATTENDEE_NAME, // 0 Attendees.ATTENDEE_EMAIL, // 1 }; private static final int ATTENDEES_INDEX_NAME = 0; private static final int ATTENDEES_INDEX_EMAIL = 1; private static final String ATTENDEES_WHERE = Attendees.EVENT_ID + "=? AND " + Attendees.ATTENDEE_RELATIONSHIP + "<>" + Attendees.RELATIONSHIP_ORGANIZER; private static final String ATTENDEES_DELETE_PREFIX = Attendees.EVENT_ID + "=? AND " + Attendees.ATTENDEE_EMAIL + " IN ("; private static final int DOES_NOT_REPEAT = 0; private static final int REPEATS_DAILY = 1; private static final int REPEATS_EVERY_WEEKDAY = 2; private static final int REPEATS_WEEKLY_ON_DAY = 3; private static final int REPEATS_MONTHLY_ON_DAY_COUNT = 4; private static final int REPEATS_MONTHLY_ON_DAY = 5; private static final int REPEATS_YEARLY = 6; private static final int REPEATS_CUSTOM = 7; private static final int MODIFY_UNINITIALIZED = 0; private static final int MODIFY_SELECTED = 1; private static final int MODIFY_ALL = 2; private static final int MODIFY_ALL_FOLLOWING = 3; private static final int DAY_IN_SECONDS = 24 * 60 * 60; private int mFirstDayOfWeek; // cached in onCreate private Uri mUri; private Cursor mEventCursor; private Cursor mCalendarsCursor; private Button mStartDateButton; private Button mEndDateButton; private Button mStartTimeButton; private Button mEndTimeButton; private Button mSaveButton; private Button mDeleteButton; private Button mDiscardButton; private CheckBox mAllDayCheckBox; private Spinner mCalendarsSpinner; private Spinner mRepeatsSpinner; private Spinner mAvailabilitySpinner; private Spinner mVisibilitySpinner; private TextView mTitleTextView; private TextView mLocationTextView; private TextView mDescriptionTextView; private View mRemindersSeparator; private LinearLayout mRemindersContainer; private LinearLayout mExtraOptions; private ArrayList<Integer> mOriginalMinutes = new ArrayList<Integer>(); private ArrayList<LinearLayout> mReminderItems = new ArrayList<LinearLayout>(0); private Rfc822Validator mEmailValidator; private MultiAutoCompleteTextView mAttendeesList; private EmailAddressAdapter mAddressAdapter; private String mOriginalAttendees = ""; // Used to control the visibility of the Guests textview. Default to true private boolean mHasAttendeeData = true; private EventRecurrence mEventRecurrence = new EventRecurrence(); private String mRrule; private boolean mCalendarsQueryComplete; private boolean mSaveAfterQueryComplete; private ProgressDialog mLoadingCalendarsDialog; private AlertDialog mNoCalendarsDialog; private ContentValues mInitialValues; private String mOwnerAccount; private boolean mFirstTime = true; /** * If the repeating event is created on the phone and it hasn't been * synced yet to the web server, then there is a bug where you can't * delete or change an instance of the repeating event. This case * can be detected with mSyncId. If mSyncId == null, then the repeating * event has not been synced to the phone, in which case we won't allow * the user to change one instance. */ private String mSyncId; private ArrayList<Integer> mRecurrenceIndexes = new ArrayList<Integer> (0); private ArrayList<Integer> mReminderValues; private ArrayList<String> mReminderLabels; private Time mStartTime; private Time mCachedOrginStartTime; private Time mEndTime; private int mModification = MODIFY_UNINITIALIZED; private int mDefaultReminderMinutes; private DeleteEventHelper mDeleteEventHelper; private QueryHandler mQueryHandler; /* This class is used to update the time buttons. */ private class TimeListener implements OnTimeSetListener { private View mView; public TimeListener(View view) { mView = view; } public void onTimeSet(TimePicker view, int hourOfDay, int minute) { // Cache the member variables locally to avoid inner class overhead. Time startTime = mStartTime; Time endTime = mEndTime; // Cache the start and end millis so that we limit the number // of calls to normalize() and toMillis(), which are fairly // expensive. long startMillis; long endMillis; if (mView == mStartTimeButton) { // The start time was changed. int hourDuration = endTime.hour - startTime.hour; int minuteDuration = endTime.minute - startTime.minute; startTime.hour = hourOfDay; startTime.minute = minute; startMillis = startTime.normalize(true); // Also update the end time to keep the duration constant. endTime.hour = hourOfDay + hourDuration; endTime.minute = minute + minuteDuration; } else { // The end time was changed. startMillis = startTime.toMillis(true); endTime.hour = hourOfDay; endTime.minute = minute; // Move to the next day if the end time is before the start time. if (endTime.before(startTime)) { endTime.monthDay = startTime.monthDay + 1; } } endMillis = endTime.normalize(true); setDate(mEndDateButton, endMillis); setTime(mStartTimeButton, startMillis); setTime(mEndTimeButton, endMillis); } } private class TimeClickListener implements View.OnClickListener { private Time mTime; public TimeClickListener(Time time) { mTime = time; } public void onClick(View v) { new TimePickerDialog(EditEvent.this, new TimeListener(v), mTime.hour, mTime.minute, DateFormat.is24HourFormat(EditEvent.this)).show(); } } private class DateListener implements OnDateSetListener { View mView; public DateListener(View view) { mView = view; } public void onDateSet(DatePicker view, int year, int month, int monthDay) { // Cache the member variables locally to avoid inner class overhead. Time startTime = mStartTime; Time endTime = mEndTime; // a17894: workaround for time restriction if (year >= 2038) { year = 2038; month = Calendar.JANUARY; monthDay = 1; } // Cache the start and end millis so that we limit the number // of calls to normalize() and toMillis(), which are fairly // expensive. long startMillis; long endMillis; if (mView == mStartDateButton) { // The start date was changed. int yearDuration = endTime.year - startTime.year; int monthDuration = endTime.month - startTime.month; int monthDayDuration = endTime.monthDay - startTime.monthDay; startTime.year = year; startTime.month = month; startTime.monthDay = monthDay; startMillis = startTime.normalize(true); //a17894: workaround if (year == 2038) { endTime.year = startTime.year; endTime.month = startTime.month; endTime.monthDay = startTime.monthDay; } else { // Also update the end date to keep the duration constant. endTime.year = year + yearDuration; if (endTime.year >= 2038) { endTime.year = 2038; } endTime.month = month + monthDuration; endTime.monthDay = monthDay + monthDayDuration; } endMillis = endTime.normalize(true); // If the start date has changed then update the repeats. populateRepeats(); } else { // The end date was changed. startMillis = startTime.toMillis(true); endTime.year = year; endTime.month = month; endTime.monthDay = monthDay; endMillis = endTime.normalize(true); } // Do not allow an event to have an end time before the start time. if (endTime.before(startTime)) { endTime.set(startTime); endMillis = startMillis; } setDate(mStartDateButton, startMillis); setDate(mEndDateButton, endMillis); setTime(mEndTimeButton, endMillis); // In case end time had to be reset //a17894: workaround mStartTime = startTime; mEndTime = endTime; } } private class DateClickListener implements View.OnClickListener { private Time mTime; public DateClickListener(Time time) { mTime = time; } public void onClick(View v) { new DatePickerDialog(EditEvent.this, new DateListener(v), mTime.year, mTime.month, mTime.monthDay).show(); } } static private class CalendarsAdapter extends ResourceCursorAdapter { public CalendarsAdapter(Context context, Cursor c) { super(context, R.layout.calendars_item, c); setDropDownViewResource(R.layout.calendars_dropdown_item); } @Override public void bindView(View view, Context context, Cursor cursor) { View colorBar = view.findViewById(R.id.color); if (colorBar != null) { colorBar.setBackgroundDrawable( Utils.getColorChip(cursor.getInt(CALENDARS_INDEX_COLOR))); } TextView name = (TextView) view.findViewById(R.id.calendar_name); if (name != null) { String displayName = cursor.getString(CALENDARS_INDEX_DISPLAY_NAME); name.setText(displayName); name.setTextColor(0xFF000000); TextView accountName = (TextView) view.findViewById(R.id.account_name); if(accountName != null) { Resources res = context.getResources(); accountName.setText(cursor.getString(CALENDARS_INDEX_OWNER_ACCOUNT)); accountName.setVisibility(TextView.VISIBLE); accountName.setTextColor(res.getColor(R.color.calendar_owner_text_color)); } } } } // This is called if the user clicks on one of the buttons: "Save", // "Discard", or "Delete". This is also called if the user clicks // on the "remove reminder" button. public void onClick(View v) { if (v == mSaveButton) { if (save()) { finish(); } return; } if (v == mDeleteButton) { long begin = mStartTime.toMillis(false /* use isDst */); long end = mEndTime.toMillis(false /* use isDst */); int which = -1; switch (mModification) { case MODIFY_SELECTED: which = DeleteEventHelper.DELETE_SELECTED; break; case MODIFY_ALL_FOLLOWING: which = DeleteEventHelper.DELETE_ALL_FOLLOWING; break; case MODIFY_ALL: which = DeleteEventHelper.DELETE_ALL; break; } mDeleteEventHelper.delete(begin, end, mEventCursor, which); return; } if (v == mDiscardButton) { finish(); return; } // This must be a click on one of the "remove reminder" buttons LinearLayout reminderItem = (LinearLayout) v.getParent(); LinearLayout parent = (LinearLayout) reminderItem.getParent(); parent.removeView(reminderItem); mReminderItems.remove(reminderItem); updateRemindersVisibility(); } // This is called if the user cancels a popup dialog. There are two // dialogs: the "Loading calendars" dialog, and the "No calendars" // dialog. The "Loading calendars" dialog is shown if there is a delay // in loading the calendars (needed when creating an event) and the user // tries to save the event before the calendars have finished loading. // The "No calendars" dialog is shown if there are no syncable calendars. public void onCancel(DialogInterface dialog) { if (dialog == mLoadingCalendarsDialog) { mSaveAfterQueryComplete = false; } else if (dialog == mNoCalendarsDialog) { finish(); } } // This is called if the user clicks on a dialog button. public void onClick(DialogInterface dialog, int which) { if (dialog == mNoCalendarsDialog) { finish(); } } private class QueryHandler extends AsyncQueryHandler { public QueryHandler(ContentResolver cr) { super(cr); } @Override protected void onQueryComplete(int token, Object cookie, Cursor cursor) { // If the query didn't return a cursor for some reason return if (cursor == null) { return; } // If the Activity is finishing, then close the cursor. // Otherwise, use the new cursor in the adapter. if (isFinishing()) { stopManagingCursor(cursor); cursor.close(); } else { mCalendarsCursor = cursor; startManagingCursor(cursor); // Stop the spinner getWindow().setFeatureInt(Window.FEATURE_INDETERMINATE_PROGRESS, Window.PROGRESS_VISIBILITY_OFF); // If there are no syncable calendars, then we cannot allow // creating a new event. if (cursor.getCount() == 0) { // Cancel the "loading calendars" dialog if it exists if (mSaveAfterQueryComplete) { mLoadingCalendarsDialog.cancel(); } // Create an error message for the user that, when clicked, // will exit this activity without saving the event. AlertDialog.Builder builder = new AlertDialog.Builder(EditEvent.this); builder.setTitle(R.string.no_syncable_calendars) .setIcon(android.R.drawable.ic_dialog_alert) .setMessage(R.string.no_calendars_found) .setPositiveButton(android.R.string.ok, EditEvent.this) .setOnCancelListener(EditEvent.this); mNoCalendarsDialog = builder.show(); return; } int defaultCalendarPosition = findDefaultCalendarPosition(mCalendarsCursor); // populate the calendars spinner CalendarsAdapter adapter = new CalendarsAdapter(EditEvent.this, mCalendarsCursor); mCalendarsSpinner.setAdapter(adapter); mCalendarsSpinner.setSelection(defaultCalendarPosition); mCalendarsQueryComplete = true; if (mSaveAfterQueryComplete) { mLoadingCalendarsDialog.cancel(); save(); finish(); } // Find user domain and set it to the validator. // TODO: we may want to update this validator if the user actually picks // a different calendar. maybe not. depends on what we want for the // user experience. this may change when we add support for multiple // accounts, anyway. if (mHasAttendeeData && cursor.moveToPosition(defaultCalendarPosition)) { String ownEmail = cursor.getString(CALENDARS_INDEX_OWNER_ACCOUNT); if (ownEmail != null) { String domain = extractDomain(ownEmail); if (domain != null) { mEmailValidator = new Rfc822Validator(domain); mAttendeesList.setValidator(mEmailValidator); } } } } } // Find the calendar position in the cursor that matches calendar in preference private int findDefaultCalendarPosition(Cursor calendarsCursor) { if (calendarsCursor.getCount() <= 0) { return -1; } String defaultCalendar = Utils.getSharedPreference(EditEvent.this, CalendarPreferenceActivity.KEY_DEFAULT_CALENDAR, null); if (defaultCalendar == null) { return 0; } int position = 0; calendarsCursor.moveToPosition(-1); while(calendarsCursor.moveToNext()) { if (defaultCalendar.equals(mCalendarsCursor .getString(CALENDARS_INDEX_OWNER_ACCOUNT))) { return position; } position++; } return 0; } } private static String extractDomain(String email) { int separator = email.lastIndexOf('@'); if (separator != -1 && ++separator < email.length()) { return email.substring(separator); } return null; } @Override protected void onCreate(Bundle icicle) { super.onCreate(icicle); requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS); setContentView(R.layout.edit_event); boolean newEvent = false; mFirstDayOfWeek = Calendar.getInstance().getFirstDayOfWeek(); mStartTime = new Time(); mEndTime = new Time(); Intent intent = getIntent(); mUri = intent.getData(); if (mUri != null) { mEventCursor = managedQuery(mUri, EVENT_PROJECTION, null, null, null); if (mEventCursor == null || mEventCursor.getCount() == 0) { // The cursor is empty. This can happen if the event was deleted. finish(); return; } } long begin = intent.getLongExtra(EVENT_BEGIN_TIME, 0); long end = intent.getLongExtra(EVENT_END_TIME, 0); String domain = "gmail.com"; boolean allDay = false; if (mEventCursor != null) { // The event already exists so fetch the all-day status mEventCursor.moveToFirst(); mHasAttendeeData = mEventCursor.getInt(EVENT_INDEX_HAS_ATTENDEE_DATA) != 0; allDay = mEventCursor.getInt(EVENT_INDEX_ALL_DAY) != 0; String rrule = mEventCursor.getString(EVENT_INDEX_RRULE); String timezone = mEventCursor.getString(EVENT_INDEX_TIMEZONE); long calendarId = mEventCursor.getInt(EVENT_INDEX_CALENDAR_ID); mOwnerAccount = mEventCursor.getString(EVENT_INDEX_OWNER_ACCOUNT); if (!TextUtils.isEmpty(mOwnerAccount)) { String ownerDomain = extractDomain(mOwnerAccount); if (ownerDomain != null) { domain = ownerDomain; } } // Remember the initial values mInitialValues = new ContentValues(); mInitialValues.put(EVENT_BEGIN_TIME, begin); mInitialValues.put(EVENT_END_TIME, end); mInitialValues.put(Events.ALL_DAY, allDay ? 1 : 0); mInitialValues.put(Events.RRULE, rrule); mInitialValues.put(Events.EVENT_TIMEZONE, timezone); mInitialValues.put(Events.CALENDAR_ID, calendarId); } else { newEvent = true; // We are creating a new event, so set the default from the // intent (if specified). allDay = intent.getBooleanExtra(EVENT_ALL_DAY, false); // Start the spinner getWindow().setFeatureInt(Window.FEATURE_INDETERMINATE_PROGRESS, Window.PROGRESS_VISIBILITY_ON); // Start a query in the background to read the list of calendars mQueryHandler = new QueryHandler(getContentResolver()); mQueryHandler.startQuery(0, null, Calendars.CONTENT_URI, CALENDARS_PROJECTION, CALENDARS_WHERE, null /* selection args */, null /* sort order */); } // If the event is all-day, read the times in UTC timezone if (begin != 0) { if (allDay) { String tz = mStartTime.timezone; mStartTime.timezone = Time.TIMEZONE_UTC; mStartTime.set(begin); mStartTime.timezone = tz; // Calling normalize to calculate isDst mStartTime.normalize(true); } else { mStartTime.set(begin); } } if (end != 0) { if (allDay) { String tz = mStartTime.timezone; mEndTime.timezone = Time.TIMEZONE_UTC; mEndTime.set(end); mEndTime.timezone = tz; // Calling normalize to calculate isDst mEndTime.normalize(true); } else { mEndTime.set(end); } } // cache all the widgets mTitleTextView = (TextView) findViewById(R.id.title); mLocationTextView = (TextView) findViewById(R.id.location); mDescriptionTextView = (TextView) findViewById(R.id.description); mStartDateButton = (Button) findViewById(R.id.start_date); mEndDateButton = (Button) findViewById(R.id.end_date); mStartTimeButton = (Button) findViewById(R.id.start_time); mEndTimeButton = (Button) findViewById(R.id.end_time); mAllDayCheckBox = (CheckBox) findViewById(R.id.is_all_day); mCalendarsSpinner = (Spinner) findViewById(R.id.calendars); mRepeatsSpinner = (Spinner) findViewById(R.id.repeats); mAvailabilitySpinner = (Spinner) findViewById(R.id.availability); mVisibilitySpinner = (Spinner) findViewById(R.id.visibility); mRemindersSeparator = findViewById(R.id.reminders_separator); mRemindersContainer = (LinearLayout) findViewById(R.id.reminder_items_container); mExtraOptions = (LinearLayout) findViewById(R.id.extra_options_container); if (mHasAttendeeData) { mAddressAdapter = new EmailAddressAdapter(this); mEmailValidator = new Rfc822Validator(domain); mAttendeesList = initMultiAutoCompleteTextView(R.id.attendees); } else { findViewById(R.id.attendees_group).setVisibility(View.GONE); } mAllDayCheckBox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { if (isChecked) { if (mEndTime.hour == 0 && mEndTime.minute == 0) { if(TextUtils.isEmpty(mRrule)) { mEndTime.monthDay--; } long endMillis = mEndTime.normalize(true); // Do not allow an event to have an end time before the start time. if (mEndTime.before(mStartTime)) { mEndTime.set(mStartTime); endMillis = mEndTime.normalize(true); } setDate(mEndDateButton, endMillis); setTime(mEndTimeButton, endMillis); } mStartTimeButton.setVisibility(View.GONE); mEndTimeButton.setVisibility(View.GONE); } else { if (mEndTime.hour == 0 && mEndTime.minute == 0) { if(TextUtils.isEmpty(mRrule)) { mEndTime.monthDay++; } long endMillis = mEndTime.normalize(true); setDate(mEndDateButton, endMillis); setTime(mEndTimeButton, endMillis); } mStartTimeButton.setVisibility(View.VISIBLE); mEndTimeButton.setVisibility(View.VISIBLE); } } }); if (allDay) { mAllDayCheckBox.setChecked(true); } else { mAllDayCheckBox.setChecked(false); } mSaveButton = (Button) findViewById(R.id.save); mSaveButton.setOnClickListener(this); mDeleteButton = (Button) findViewById(R.id.delete); mDeleteButton.setOnClickListener(this); mDiscardButton = (Button) findViewById(R.id.discard); mDiscardButton.setOnClickListener(this); // Initialize the reminder values array. Resources r = getResources(); String[] strings = r.getStringArray(R.array.reminder_minutes_values); int size = strings.length; ArrayList<Integer> list = new ArrayList<Integer>(size); for (int i = 0 ; i < size ; i++) { list.add(Integer.parseInt(strings[i])); } mReminderValues = list; String[] labels = r.getStringArray(R.array.reminder_minutes_labels); mReminderLabels = new ArrayList<String>(Arrays.asList(labels)); SharedPreferences prefs = CalendarPreferenceActivity.getSharedPreferences(this); String durationString = prefs.getString(CalendarPreferenceActivity.KEY_DEFAULT_REMINDER, "0"); mDefaultReminderMinutes = Integer.parseInt(durationString); if (newEvent && mDefaultReminderMinutes != 0) { addReminder(this, this, mReminderItems, mReminderValues, mReminderLabels, mDefaultReminderMinutes); } long eventId = (mEventCursor == null) ? -1 : mEventCursor.getLong(EVENT_INDEX_ID); ContentResolver cr = getContentResolver(); // Reminders cursor boolean hasAlarm = (mEventCursor != null) && (mEventCursor.getInt(EVENT_INDEX_HAS_ALARM) != 0); if (hasAlarm) { Uri uri = Reminders.CONTENT_URI; String where = String.format(REMINDERS_WHERE, eventId); Cursor reminderCursor = cr.query(uri, REMINDERS_PROJECTION, where, null, null); try { // First pass: collect all the custom reminder minutes (e.g., // a reminder of 8 minutes) into a global list. while (reminderCursor.moveToNext()) { int minutes = reminderCursor.getInt(REMINDERS_INDEX_MINUTES); EditEvent.addMinutesToList(this, mReminderValues, mReminderLabels, minutes); } // Second pass: create the reminder spinners reminderCursor.moveToPosition(-1); while (reminderCursor.moveToNext()) { int minutes = reminderCursor.getInt(REMINDERS_INDEX_MINUTES); mOriginalMinutes.add(minutes); EditEvent.addReminder(this, this, mReminderItems, mReminderValues, mReminderLabels, minutes); } } finally { reminderCursor.close(); } } updateRemindersVisibility(); // Setup the + Add Reminder Button View.OnClickListener addReminderOnClickListener = new View.OnClickListener() { public void onClick(View v) { addReminder(); } }; ImageButton reminderRemoveButton = (ImageButton) findViewById(R.id.reminder_add); reminderRemoveButton.setOnClickListener(addReminderOnClickListener); mDeleteEventHelper = new DeleteEventHelper(this, true /* exit when done */); // Attendees cursor if (mHasAttendeeData && eventId != -1) { Uri uri = Attendees.CONTENT_URI; String[] whereArgs = {Long.toString(eventId)}; Cursor attendeeCursor = cr.query(uri, ATTENDEES_PROJECTION, ATTENDEES_WHERE, whereArgs, null); try { StringBuilder b = new StringBuilder(); while (attendeeCursor.moveToNext()) { String name = attendeeCursor.getString(ATTENDEES_INDEX_NAME); String email = attendeeCursor.getString(ATTENDEES_INDEX_EMAIL); if (email != null) { if (name != null && name.length() > 0 && !name.equals(email)) { b.append('"').append(name).append("\" "); } b.append('<').append(email).append(">, "); } } if (b.length() > 0) { mOriginalAttendees = b.toString(); mAttendeesList.setText(mOriginalAttendees); } } finally { attendeeCursor.close(); } } if (mEventCursor == null) { // Allow the intent to specify the fields in the event. // This will allow other apps to create events easily. initFromIntent(intent); } mCachedOrginStartTime = new Time(mStartTime); } private LinkedHashSet<Rfc822Token> getAddressesFromList(MultiAutoCompleteTextView list) { list.clearComposingText(); LinkedHashSet<Rfc822Token> addresses = new LinkedHashSet<Rfc822Token>(); Rfc822Tokenizer.tokenize(list.getText(), addresses); // validate the emails, out of paranoia. they should already be // validated on input, but drop any invalid emails just to be safe. Iterator<Rfc822Token> addressIterator = addresses.iterator(); while (addressIterator.hasNext()) { Rfc822Token address = addressIterator.next(); if (!mEmailValidator.isValid(address.getAddress())) { Log.w(TAG, "Dropping invalid attendee email address: " + address); addressIterator.remove(); //if the Set is structurally changed while an iterator is used to iterate over the elements, //so use a temporal instance to iterate and delete elements on the target instance. } } return addresses; } // From com.google.android.gm.ComposeActivity private MultiAutoCompleteTextView initMultiAutoCompleteTextView(int res) { MultiAutoCompleteTextView list = (MultiAutoCompleteTextView) findViewById(res); list.setAdapter(mAddressAdapter); list.setTokenizer(new Rfc822Tokenizer()); list.setValidator(mEmailValidator); // NOTE: assumes no other filters are set list.setFilters(sRecipientFilters); return list; } /** * From com.google.android.gm.ComposeActivity * Implements special address cleanup rules: * The first space key entry following an "@" symbol that is followed by any combination * of letters and symbols, including one+ dots and zero commas, should insert an extra * comma (followed by the space). */ private static InputFilter[] sRecipientFilters = new InputFilter[] { new Rfc822InputFilter() }; private void initFromIntent(Intent intent) { String title = intent.getStringExtra(Events.TITLE); if (title != null) { mTitleTextView.setText(title); } String location = intent.getStringExtra(Events.EVENT_LOCATION); if (location != null) { mLocationTextView.setText(location); } String description = intent.getStringExtra(Events.DESCRIPTION); if (description != null) { mDescriptionTextView.setText(description); } int availability = intent.getIntExtra(Events.TRANSPARENCY, -1); if (availability != -1) { mAvailabilitySpinner.setSelection(availability); } int visibility = intent.getIntExtra(Events.VISIBILITY, -1); if (visibility != -1) { mVisibilitySpinner.setSelection(visibility); } String rrule = intent.getStringExtra(Events.RRULE); if (rrule != null) { mRrule = rrule; mEventRecurrence.parse(rrule); } } @Override protected void onResume() { super.onResume(); if (mUri != null) { if (mEventCursor == null || mEventCursor.getCount() == 0) { // The cursor is empty. This can happen if the event was deleted. finish(); return; } } if (mEventCursor != null) { Cursor cursor = mEventCursor; cursor.moveToFirst(); mRrule = cursor.getString(EVENT_INDEX_RRULE); String title = cursor.getString(EVENT_INDEX_TITLE); String description = cursor.getString(EVENT_INDEX_DESCRIPTION); String location = cursor.getString(EVENT_INDEX_EVENT_LOCATION); int availability = cursor.getInt(EVENT_INDEX_TRANSPARENCY); int visibility = cursor.getInt(EVENT_INDEX_VISIBILITY); if (visibility > 0) { // For now we the array contains the values 0, 2, and 3. We subtract one to match. visibility--; } if (!TextUtils.isEmpty(mRrule) && mModification == MODIFY_UNINITIALIZED) { // If this event has not been synced, then don't allow deleting // or changing a single instance. mSyncId = cursor.getString(EVENT_INDEX_SYNC_ID); mEventRecurrence.parse(mRrule); // If we haven't synced this repeating event yet, then don't // allow the user to change just one instance. int itemIndex = 0; CharSequence[] items; if (mSyncId == null) { if(isFirstEventInSeries()) { // Still display the option so the user knows all events are changing items = new CharSequence[1]; } else { items = new CharSequence[2]; } } else { if(isFirstEventInSeries()) { items = new CharSequence[2]; } else { items = new CharSequence[3]; } items[itemIndex++] = getText(R.string.modify_event); } items[itemIndex++] = getText(R.string.modify_all); // Do one more check to make sure this remains at the end of the list if(!isFirstEventInSeries()) { // TODO Find out why modify all following causes a dup of the first event if // it's operating on the first event. items[itemIndex++] = getText(R.string.modify_all_following); } // Display the modification dialog. new AlertDialog.Builder(this) .setOnCancelListener(new OnCancelListener() { public void onCancel(DialogInterface dialog) { finish(); } }) .setTitle(R.string.edit_event_label) .setItems(items, new OnClickListener() { public void onClick(DialogInterface dialog, int which) { if (which == 0) { mModification = (mSyncId == null) ? MODIFY_ALL : MODIFY_SELECTED; } else if (which == 1) { mModification = (mSyncId == null) ? MODIFY_ALL_FOLLOWING : MODIFY_ALL; } else if (which == 2) { mModification = MODIFY_ALL_FOLLOWING; } // If we are modifying all the events in a // series then disable and ignore the date. if (mModification == MODIFY_ALL) { mStartDateButton.setEnabled(false); mEndDateButton.setEnabled(false); } else if (mModification == MODIFY_SELECTED) { mRepeatsSpinner.setEnabled(false); } } }) .show(); } if(mFirstTime) { mTitleTextView.setText(title); mLocationTextView.setText(location); mDescriptionTextView.setText(description); mAvailabilitySpinner.setSelection(availability); mVisibilitySpinner.setSelection(visibility); mFirstTime = false; } // This is an existing event so hide the calendar spinner // since we can't change the calendar. View calendarGroup = findViewById(R.id.calendar_group); calendarGroup.setVisibility(View.GONE); } else { // New event if (Time.isEpoch(mStartTime) && Time.isEpoch(mEndTime)) { mStartTime.setToNow(); // Round the time to the nearest half hour. mStartTime.second = 0; int minute = mStartTime.minute; if (minute == 0) { // We are already on a half hour increment } else if (minute > 0 && minute <= 30) { mStartTime.minute = 30; } else { mStartTime.minute = 0; mStartTime.hour += 1; } long startMillis = mStartTime.normalize(true /* ignore isDst */); mEndTime.set(startMillis + DateUtils.HOUR_IN_MILLIS); } // Hide delete button mDeleteButton.setVisibility(View.GONE); } updateRemindersVisibility(); populateWhen(); populateRepeats(); } @Override public boolean onCreateOptionsMenu(Menu menu) { MenuItem item; item = menu.add(MENU_GROUP_REMINDER, MENU_ADD_REMINDER, 0, R.string.add_new_reminder); item.setIcon(R.drawable.ic_menu_reminder); item.setAlphabeticShortcut('r'); item = menu.add(MENU_GROUP_SHOW_OPTIONS, MENU_SHOW_EXTRA_OPTIONS, 0, R.string.edit_event_show_extra_options); item.setIcon(R.drawable.ic_menu_show_list); item = menu.add(MENU_GROUP_HIDE_OPTIONS, MENU_HIDE_EXTRA_OPTIONS, 0, R.string.edit_event_hide_extra_options); item.setIcon(R.drawable.ic_menu_show_list); return super.onCreateOptionsMenu(menu); } @Override public boolean onPrepareOptionsMenu(Menu menu) { if (mReminderItems.size() < MAX_REMINDERS) { menu.setGroupVisible(MENU_GROUP_REMINDER, true); menu.setGroupEnabled(MENU_GROUP_REMINDER, true); } else { menu.setGroupVisible(MENU_GROUP_REMINDER, false); menu.setGroupEnabled(MENU_GROUP_REMINDER, false); } if (mExtraOptions.getVisibility() == View.VISIBLE) { menu.setGroupVisible(MENU_GROUP_SHOW_OPTIONS, false); menu.setGroupVisible(MENU_GROUP_HIDE_OPTIONS, true); } else { menu.setGroupVisible(MENU_GROUP_SHOW_OPTIONS, true); menu.setGroupVisible(MENU_GROUP_HIDE_OPTIONS, false); } return super.onPrepareOptionsMenu(menu); } private void addReminder() { // TODO: when adding a new reminder, make it different from the // last one in the list (if any). if (mDefaultReminderMinutes == 0) { addReminder(this, this, mReminderItems, mReminderValues, mReminderLabels, 10 /* minutes */); } else { addReminder(this, this, mReminderItems, mReminderValues, mReminderLabels, mDefaultReminderMinutes); } updateRemindersVisibility(); } @Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case MENU_ADD_REMINDER: addReminder(); return true; case MENU_SHOW_EXTRA_OPTIONS: mExtraOptions.setVisibility(View.VISIBLE); return true; case MENU_HIDE_EXTRA_OPTIONS: mExtraOptions.setVisibility(View.GONE); return true; } return super.onOptionsItemSelected(item); } @Override public void onBackPressed() { // If we are creating a new event, do not create it if the // title, location and description are all empty, in order to // prevent accidental "no subject" event creations. if (mUri != null || !isEmpty()) { if (!save()) { // We cannot exit this activity because the calendars // are still loading. return; } } finish(); } private void populateWhen() { if(mAllDayCheckBox.isChecked() && !TextUtils.isEmpty(mRrule)) { mEndTime = mStartTime; } long startMillis = mStartTime.toMillis(false /* use isDst */); long endMillis = mEndTime.toMillis(false /* use isDst */); setDate(mStartDateButton, startMillis); setDate(mEndDateButton, endMillis); setTime(mStartTimeButton, startMillis); setTime(mEndTimeButton, endMillis); mStartDateButton.setOnClickListener(new DateClickListener(mStartTime)); mEndDateButton.setOnClickListener(new DateClickListener(mEndTime)); mStartTimeButton.setOnClickListener(new TimeClickListener(mStartTime)); mEndTimeButton.setOnClickListener(new TimeClickListener(mEndTime)); } private void populateRepeats() { Time time = mStartTime; Resources r = getResources(); int resource = android.R.layout.simple_spinner_item; String[] days = new String[] { DateUtils.getDayOfWeekString(Calendar.SUNDAY, DateUtils.LENGTH_MEDIUM), DateUtils.getDayOfWeekString(Calendar.MONDAY, DateUtils.LENGTH_MEDIUM), DateUtils.getDayOfWeekString(Calendar.TUESDAY, DateUtils.LENGTH_MEDIUM), DateUtils.getDayOfWeekString(Calendar.WEDNESDAY, DateUtils.LENGTH_MEDIUM), DateUtils.getDayOfWeekString(Calendar.THURSDAY, DateUtils.LENGTH_MEDIUM), DateUtils.getDayOfWeekString(Calendar.FRIDAY, DateUtils.LENGTH_MEDIUM), DateUtils.getDayOfWeekString(Calendar.SATURDAY, DateUtils.LENGTH_MEDIUM), }; String[] ordinals = r.getStringArray(R.array.ordinal_labels); // Only display "Custom" in the spinner if the device does not support the // recurrence functionality of the event. Only display every weekday if // the event starts on a weekday. boolean isCustomRecurrence = isCustomRecurrence(); boolean isWeekdayEvent = isWeekdayEvent(); ArrayList<String> repeatArray = new ArrayList<String>(0); ArrayList<Integer> recurrenceIndexes = new ArrayList<Integer>(0); repeatArray.add(r.getString(R.string.does_not_repeat)); recurrenceIndexes.add(DOES_NOT_REPEAT); repeatArray.add(r.getString(R.string.daily)); recurrenceIndexes.add(REPEATS_DAILY); if (isWeekdayEvent) { repeatArray.add(r.getString(R.string.every_weekday)); recurrenceIndexes.add(REPEATS_EVERY_WEEKDAY); } String format = r.getString(R.string.weekly); repeatArray.add(String.format(format, time.format("%A"))); recurrenceIndexes.add(REPEATS_WEEKLY_ON_DAY); // Calculate whether this is the 1st, 2nd, 3rd, 4th, or last appearance of the given day. int dayNumber = (time.monthDay - 1) / 7; format = r.getString(R.string.monthly_on_day_count); repeatArray.add(String.format(format, ordinals[dayNumber], days[time.weekDay])); recurrenceIndexes.add(REPEATS_MONTHLY_ON_DAY_COUNT); format = r.getString(R.string.monthly_on_day); repeatArray.add(String.format(format, time.monthDay)); recurrenceIndexes.add(REPEATS_MONTHLY_ON_DAY); long when = time.toMillis(false); format = r.getString(R.string.yearly); int flags = 0; if (DateFormat.is24HourFormat(this)) { flags |= DateUtils.FORMAT_24HOUR; } repeatArray.add(String.format(format, DateUtils.formatDateTime(this, when, flags))); recurrenceIndexes.add(REPEATS_YEARLY); if (isCustomRecurrence) { repeatArray.add(r.getString(R.string.custom)); recurrenceIndexes.add(REPEATS_CUSTOM); } mRecurrenceIndexes = recurrenceIndexes; int position = recurrenceIndexes.indexOf(DOES_NOT_REPEAT); if (mRrule != null) { if (isCustomRecurrence) { position = recurrenceIndexes.indexOf(REPEATS_CUSTOM); } else { switch (mEventRecurrence.freq) { case EventRecurrence.DAILY: position = recurrenceIndexes.indexOf(REPEATS_DAILY); break; case EventRecurrence.WEEKLY: if (mEventRecurrence.repeatsOnEveryWeekDay()) { position = recurrenceIndexes.indexOf(REPEATS_EVERY_WEEKDAY); } else { position = recurrenceIndexes.indexOf(REPEATS_WEEKLY_ON_DAY); } break; case EventRecurrence.MONTHLY: if (mEventRecurrence.repeatsMonthlyOnDayCount()) { position = recurrenceIndexes.indexOf(REPEATS_MONTHLY_ON_DAY_COUNT); } else { position = recurrenceIndexes.indexOf(REPEATS_MONTHLY_ON_DAY); } break; case EventRecurrence.YEARLY: position = recurrenceIndexes.indexOf(REPEATS_YEARLY); break; } } } ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, resource, repeatArray); adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); mRepeatsSpinner.setAdapter(adapter); mRepeatsSpinner.setSelection(position); } // Adds a reminder to the displayed list of reminders. // Returns true if successfully added reminder, false if no reminders can // be added. static boolean addReminder(Activity activity, View.OnClickListener listener, ArrayList<LinearLayout> items, ArrayList<Integer> values, ArrayList<String> labels, int minutes) { if (items.size() >= MAX_REMINDERS) { return false; } LayoutInflater inflater = activity.getLayoutInflater(); LinearLayout parent = (LinearLayout) activity.findViewById(R.id.reminder_items_container); LinearLayout reminderItem = (LinearLayout) inflater.inflate(R.layout.edit_reminder_item, null); parent.addView(reminderItem); Spinner spinner = (Spinner) reminderItem.findViewById(R.id.reminder_value); Resources res = activity.getResources(); spinner.setPrompt(res.getString(R.string.reminders_label)); int resource = android.R.layout.simple_spinner_item; ArrayAdapter<String> adapter = new ArrayAdapter<String>(activity, resource, labels); adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); spinner.setAdapter(adapter); ImageButton reminderRemoveButton; reminderRemoveButton = (ImageButton) reminderItem.findViewById(R.id.reminder_remove); reminderRemoveButton.setOnClickListener(listener); int index = findMinutesInReminderList(values, minutes); spinner.setSelection(index); items.add(reminderItem); return true; } static void addMinutesToList(Context context, ArrayList<Integer> values, ArrayList<String> labels, int minutes) { int index = values.indexOf(minutes); if (index != -1) { return; } // The requested "minutes" does not exist in the list, so insert it // into the list. String label = constructReminderLabel(context, minutes, false); int len = values.size(); for (int i = 0; i < len; i++) { if (minutes < values.get(i)) { values.add(i, minutes); labels.add(i, label); return; } } values.add(minutes); labels.add(len, label); } /** * Finds the index of the given "minutes" in the "values" list. * * @param values the list of minutes corresponding to the spinner choices * @param minutes the minutes to search for in the values list * @return the index of "minutes" in the "values" list */ private static int findMinutesInReminderList(ArrayList<Integer> values, int minutes) { int index = values.indexOf(minutes); if (index == -1) { // This should never happen. Log.e("Cal", "Cannot find minutes (" + minutes + ") in list"); return 0; } return index; } // Constructs a label given an arbitrary number of minutes. For example, // if the given minutes is 63, then this returns the string "63 minutes". // As another example, if the given minutes is 120, then this returns // "2 hours". static String constructReminderLabel(Context context, int minutes, boolean abbrev) { Resources resources = context.getResources(); int value, resId; if (minutes % 60 != 0) { value = minutes; if (abbrev) { resId = R.plurals.Nmins; } else { resId = R.plurals.Nminutes; } } else if (minutes % (24 * 60) != 0) { value = minutes / 60; resId = R.plurals.Nhours; } else { value = minutes / ( 24 * 60); resId = R.plurals.Ndays; } String format = resources.getQuantityString(resId, value); return String.format(format, value); } private void updateRemindersVisibility() { if (mReminderItems.size() == 0) { mRemindersSeparator.setVisibility(View.GONE); mRemindersContainer.setVisibility(View.GONE); } else { mRemindersSeparator.setVisibility(View.VISIBLE); mRemindersContainer.setVisibility(View.VISIBLE); } } private void setDate(TextView view, long millis) { int flags = DateUtils.FORMAT_SHOW_DATE | DateUtils.FORMAT_SHOW_YEAR | DateUtils.FORMAT_SHOW_WEEKDAY | DateUtils.FORMAT_ABBREV_MONTH | DateUtils.FORMAT_ABBREV_WEEKDAY; view.setText(DateUtils.formatDateTime(this, millis, flags)); } private void setTime(TextView view, long millis) { int flags = DateUtils.FORMAT_SHOW_TIME; if (DateFormat.is24HourFormat(this)) { flags |= DateUtils.FORMAT_24HOUR; } view.setText(DateUtils.formatDateTime(this, millis, flags)); } // Saves the event. Returns true if it is okay to exit this activity. private boolean save() { boolean forceSaveReminders = false; // If we are creating a new event, then make sure we wait until the // query to fetch the list of calendars has finished. if (mEventCursor == null) { if (!mCalendarsQueryComplete) { // Wait for the calendars query to finish. if (mLoadingCalendarsDialog == null) { // Create the progress dialog mLoadingCalendarsDialog = ProgressDialog.show(this, getText(R.string.loading_calendars_title), getText(R.string.loading_calendars_message), true, true, this); mSaveAfterQueryComplete = true; } return false; } // Avoid creating a new event if the calendars cursor is empty or we clicked through // too quickly and no calendar was selected (blame the monkey) if (mCalendarsCursor == null || mCalendarsCursor.getCount() == 0 || mCalendarsSpinner.getSelectedItemId() == AdapterView.INVALID_ROW_ID) { Log.w("Cal", "The calendars table does not contain any calendars" + " or no calendar was selected." + " New event was not created."); return true; } Toast.makeText(this, R.string.creating_event, Toast.LENGTH_SHORT).show(); } else { Toast.makeText(this, R.string.saving_event, Toast.LENGTH_SHORT).show(); } ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); int eventIdIndex = -1; ContentValues values = getContentValuesFromUi(); Uri uri = mUri; // Update the "hasAlarm" field for the event ArrayList<Integer> reminderMinutes = reminderItemsToMinutes(mReminderItems, mReminderValues); int len = reminderMinutes.size(); values.put(Events.HAS_ALARM, (len > 0) ? 1 : 0); // For recurring events, we must make sure that we use duration rather // than dtend. if (uri == null) { //a21654 for local sync id long calendarId = mCalendarsSpinner.getSelectedItemId(); String syncId = null; final Uri calendarContentUri = Calendars.CONTENT_URI; final ContentResolver cr = getApplicationContext().getContentResolver(); Cursor cursor = null; cursor = cr.query(ContentUris.withAppendedId(calendarContentUri, calendarId), new String[] { Calendars._SYNC_ACCOUNT_TYPE }, null /* selection */, null /* selectionArgs */, null /* sort */); if (cursor == null || !cursor.moveToFirst()) { Log.d(TAG, "Couldn't find " + calendarId + " in Calendar table"); } else{ Log.v(TAG,"Calendar id = "+Long.toString(calendarId)+"Calendars._SYNC_ACCOUNT_TYPE = "+cursor.getString (0)); if (cursor.getString(0).equals("Local")){ values.put(Events._SYNC_ID, "LOCAL://0.0"+"/"+randomString(26)); } } if(cursor != null) cursor.close(); //a21654 end // Add hasAttendeeData for a new event values.put(Events.HAS_ATTENDEE_DATA, 1); // Create new event with new contents addRecurrenceRule(values); if (mRrule != null) { values.remove(Events.DTEND); } eventIdIndex = ops.size(); Builder b = ContentProviderOperation.newInsert(Events.CONTENT_URI).withValues(values); ops.add(b.build()); forceSaveReminders = true; } else if (mRrule == null) { // Modify contents of a non-repeating event addRecurrenceRule(values); checkTimeDependentFields(values); //a17894 values.put(Events.HAS_ATTENDEE_DATA, mHasAttendeeData ? 1 : 0); String syncID = mEventCursor.getString(EVENT_INDEX_SYNC_ID); if(syncID != null && syncID.length() > 0) { values.put(Events.ORIGINAL_EVENT, syncID); if (syncID.contains("LOCAL://0.0")) { values.put(Events._SYNC_ID, "LOCAL://0.0"+"/"+randomString(26)); } } ops.add(ContentProviderOperation.newUpdate(uri).withValues(values).build()); } else if (mInitialValues.getAsString(Events.RRULE) == null) { // This event was changed from a non-repeating event to a // repeating event. addRecurrenceRule(values); values.remove(Events.DTEND); //a17894 values.put(Events.HAS_ATTENDEE_DATA, mHasAttendeeData ? 1 : 0); String syncID = mEventCursor.getString(EVENT_INDEX_SYNC_ID); if(syncID != null && syncID.length() > 0) { values.put(Events.ORIGINAL_EVENT, syncID); if (syncID.contains("LOCAL://0.0")) { values.put(Events._SYNC_ID, "LOCAL://0.0"+"/"+randomString(26)); } } ops.add(ContentProviderOperation.newUpdate(uri).withValues(values).build()); } else if (mModification == MODIFY_SELECTED) { // Modify contents of the current instance of repeating event // Create a recurrence exception long begin = mInitialValues.getAsLong(EVENT_BEGIN_TIME); String syncID = mEventCursor.getString(EVENT_INDEX_SYNC_ID); if(syncID != null && syncID.length() > 0) { values.put(Events.ORIGINAL_EVENT, syncID); if (syncID.contains("LOCAL://0.0")) { values.put(Events._SYNC_ID, "LOCAL://0.0"+"/"+randomString(26)); } } values.put(Events.ORIGINAL_INSTANCE_TIME, begin); boolean allDay = mInitialValues.getAsInteger(Events.ALL_DAY) != 0; values.put(Events.ORIGINAL_ALL_DAY, allDay ? 1 : 0); eventIdIndex = ops.size(); Builder b = ContentProviderOperation.newInsert(Events.CONTENT_URI).withValues(values); ops.add(b.build()); forceSaveReminders = true; } else if (mModification == MODIFY_ALL_FOLLOWING) { // Modify this instance and all future instances of repeating event addRecurrenceRule(values); if (mRrule == null) { // We've changed a recurring event to a non-recurring event. // If the event we are editing is the first in the series, // then delete the whole series. Otherwise, update the series // to end at the new start time. if (isFirstEventInSeries()) { ops.add(ContentProviderOperation.newDelete(uri).build()); } else { // Update the current repeating event to end at the new // start time. updatePastEvents(ops, uri); } eventIdIndex = ops.size(); ops.add(ContentProviderOperation.newInsert(Events.CONTENT_URI).withValues(values) .build()); } else { if (isFirstEventInSeries()) { checkTimeDependentFields(values); values.remove(Events.DTEND); Builder b = ContentProviderOperation.newUpdate(uri).withValues(values); ops.add(b.build()); } else { // Update the current repeating event to end at the new // start time. updatePastEvents(ops, uri); // Create a new event with the user-modified fields values.remove(Events.DTEND); //a17894 values.put(Events.HAS_ATTENDEE_DATA, mHasAttendeeData ? 1 : 0); String syncID = mEventCursor.getString(EVENT_INDEX_SYNC_ID); if(syncID != null && syncID.length() > 0) { values.put(Events.ORIGINAL_EVENT, syncID); if (syncID.contains("LOCAL://0.0")) { values.put(Events._SYNC_ID, "LOCAL://0.0"+"/"+randomString(26)); } } eventIdIndex = ops.size(); ops.add(ContentProviderOperation.newInsert(Events.CONTENT_URI).withValues( values).build()); } } forceSaveReminders = true; } else if (mModification == MODIFY_ALL) { // Modify all instances of repeating event addRecurrenceRule(values); if (mRrule == null) { // We've changed a recurring event to a non-recurring event. // Delete the whole series and replace it with a new // non-recurring event. ops.add(ContentProviderOperation.newDelete(uri).build()); eventIdIndex = ops.size(); ops.add(ContentProviderOperation.newInsert(Events.CONTENT_URI).withValues(values) .build()); forceSaveReminders = true; } else { checkTimeDependentFields(values); values.remove(Events.DTEND); ops.add(ContentProviderOperation.newUpdate(uri).withValues(values).build()); } } // New Event or New Exception to an existing event boolean newEvent = (eventIdIndex != -1); if (newEvent) { saveRemindersWithBackRef(ops, eventIdIndex, reminderMinutes, mOriginalMinutes, forceSaveReminders); } else if (uri != null) { long eventId = ContentUris.parseId(uri); saveReminders(ops, eventId, reminderMinutes, mOriginalMinutes, forceSaveReminders); } Builder b; // New event/instance - Set Organizer's response as yes if (mHasAttendeeData && newEvent) { values.clear(); int calendarCursorPosition = mCalendarsSpinner.getSelectedItemPosition(); // Save the default calendar for new events if (mCalendarsCursor != null) { if (mCalendarsCursor.moveToPosition(calendarCursorPosition)) { String defaultCalendar = mCalendarsCursor .getString(CALENDARS_INDEX_OWNER_ACCOUNT); Utils.setSharedPreference(this, CalendarPreferenceActivity.KEY_DEFAULT_CALENDAR, defaultCalendar); } } String ownerEmail = mOwnerAccount; // Just in case mOwnerAccount is null, try to get owner from mCalendarsCursor if (ownerEmail == null && mCalendarsCursor != null && mCalendarsCursor.moveToPosition(calendarCursorPosition)) { ownerEmail = mCalendarsCursor.getString(CALENDARS_INDEX_OWNER_ACCOUNT); } if (ownerEmail != null) { values.put(Attendees.ATTENDEE_EMAIL, ownerEmail); values.put(Attendees.ATTENDEE_RELATIONSHIP, Attendees.RELATIONSHIP_ORGANIZER); values.put(Attendees.ATTENDEE_TYPE, Attendees.TYPE_NONE); values.put(Attendees.ATTENDEE_STATUS, Attendees.ATTENDEE_STATUS_ACCEPTED); b = ContentProviderOperation.newInsert(Attendees.CONTENT_URI) .withValues(values); b.withValueBackReference(Reminders.EVENT_ID, eventIdIndex); ops.add(b.build()); } } // TODO: is this the right test? this currently checks if this is // a new event or an existing event. or is this a paranoia check? if (mHasAttendeeData && (newEvent || uri != null)) { Editable attendeesText = mAttendeesList.getText(); // Hit the content provider only if this is a new event or the user has changed it if (newEvent || !mOriginalAttendees.equals(attendeesText.toString())) { // figure out which attendees need to be added and which ones // need to be deleted. use a linked hash set, so we maintain // order (but also remove duplicates). LinkedHashSet<Rfc822Token> newAttendees = getAddressesFromList(mAttendeesList); // the eventId is only used if eventIdIndex is -1. // TODO: clean up this code. long eventId = uri != null ? ContentUris.parseId(uri) : -1; // only compute deltas if this is an existing event. // new events (being inserted into the Events table) won't // have any existing attendees. if (!newEvent) { HashSet<Rfc822Token> removedAttendees = new HashSet<Rfc822Token>(); HashSet<Rfc822Token> originalAttendees = new HashSet<Rfc822Token>(); Rfc822Tokenizer.tokenize(mOriginalAttendees, originalAttendees); for (Rfc822Token originalAttendee : originalAttendees) { if (newAttendees.contains(originalAttendee)) { // existing attendee. remove from new attendees set. newAttendees.remove(originalAttendee); } else { // no longer in attendees. mark as removed. removedAttendees.add(originalAttendee); } } // delete removed attendees b = ContentProviderOperation.newDelete(Attendees.CONTENT_URI); String[] args = new String[removedAttendees.size() + 1]; args[0] = Long.toString(eventId); int i = 1; StringBuilder deleteWhere = new StringBuilder(ATTENDEES_DELETE_PREFIX); for (Rfc822Token removedAttendee : removedAttendees) { if (i > 1) { deleteWhere.append(","); } deleteWhere.append("?"); args[i++] = removedAttendee.getAddress(); } deleteWhere.append(")"); b.withSelection(deleteWhere.toString(), args); ops.add(b.build()); } if (newAttendees.size() > 0) { // Insert the new attendees for (Rfc822Token attendee : newAttendees) { values.clear(); values.put(Attendees.ATTENDEE_NAME, attendee.getName()); values.put(Attendees.ATTENDEE_EMAIL, attendee.getAddress()); values.put(Attendees.ATTENDEE_RELATIONSHIP, Attendees.RELATIONSHIP_ATTENDEE); values.put(Attendees.ATTENDEE_TYPE, Attendees.TYPE_NONE); values.put(Attendees.ATTENDEE_STATUS, Attendees.ATTENDEE_STATUS_NONE); if (newEvent) { b = ContentProviderOperation.newInsert(Attendees.CONTENT_URI) .withValues(values); b.withValueBackReference(Attendees.EVENT_ID, eventIdIndex); } else { values.put(Attendees.EVENT_ID, eventId); b = ContentProviderOperation.newInsert(Attendees.CONTENT_URI) .withValues(values); } ops.add(b.build()); } } } } try { // TODO Move this to background thread ContentProviderResult[] results = getContentResolver().applyBatch(android.provider.Calendar.AUTHORITY, ops); if (DEBUG) { for (int i = 0; i < results.length; i++) { Log.v(TAG, "results = " + results[i].toString()); } } } catch (RemoteException e) { Log.w(TAG, "Ignoring unexpected remote exception", e); } catch (OperationApplicationException e) { Log.w(TAG, "Ignoring unexpected exception", e); } return true; } private boolean isFirstEventInSeries() { int dtStart = mEventCursor.getColumnIndexOrThrow(Events.DTSTART); long start = mEventCursor.getLong(dtStart); // return start == mStartTime.toMillis(true); return start == mCachedOrginStartTime.toMillis(true); } private void updatePastEvents(ArrayList<ContentProviderOperation> ops, Uri uri) { long oldStartMillis = mEventCursor.getLong(EVENT_INDEX_DTSTART); String oldDuration = mEventCursor.getString(EVENT_INDEX_DURATION); boolean allDay = mEventCursor.getInt(EVENT_INDEX_ALL_DAY) != 0; String oldRrule = mEventCursor.getString(EVENT_INDEX_RRULE); mEventRecurrence.parse(oldRrule); Time untilTime = new Time(); long begin = mInitialValues.getAsLong(EVENT_BEGIN_TIME); ContentValues oldValues = new ContentValues(); // The "until" time must be in UTC time in order for Google calendar // to display it properly. For all-day events, the "until" time string // must include just the date field, and not the time field. The // repeating events repeat up to and including the "until" time. untilTime.timezone = Time.TIMEZONE_UTC; // Subtract one second from the old begin time to get the new // "until" time. untilTime.set(begin - 1000); // subtract one second (1000 millis) if (allDay) { untilTime.hour = 0; untilTime.minute = 0; untilTime.second = 0; untilTime.allDay = true; untilTime.normalize(false); // For all-day events, the duration must be in days, not seconds. // Otherwise, Google Calendar will (mistakenly) change this event // into a non-all-day event. int len = oldDuration.length(); if (oldDuration.charAt(0) == 'P' && oldDuration.charAt(len - 1) == 'S') { int seconds = Integer.parseInt(oldDuration.substring(1, len - 1)); int days = (seconds + DAY_IN_SECONDS - 1) / DAY_IN_SECONDS; oldDuration = "P" + days + "D"; } } mEventRecurrence.until = untilTime.format2445(); oldValues.put(Events.DTSTART, oldStartMillis); oldValues.put(Events.DURATION, oldDuration); oldValues.put(Events.RRULE, mEventRecurrence.toString()); Builder b = ContentProviderOperation.newUpdate(uri).withValues(oldValues); ops.add(b.build()); } private void checkTimeDependentFields(ContentValues values) { long oldBegin = mInitialValues.getAsLong(EVENT_BEGIN_TIME); long oldEnd = mInitialValues.getAsLong(EVENT_END_TIME); boolean oldAllDay = mInitialValues.getAsInteger(Events.ALL_DAY) != 0; String oldRrule = mInitialValues.getAsString(Events.RRULE); String oldTimezone = mInitialValues.getAsString(Events.EVENT_TIMEZONE); long newBegin = values.getAsLong(Events.DTSTART); long newEnd = values.getAsLong(Events.DTEND); boolean newAllDay = values.getAsInteger(Events.ALL_DAY) != 0; String newRrule = values.getAsString(Events.RRULE); String newTimezone = values.getAsString(Events.EVENT_TIMEZONE); // If none of the time-dependent fields changed, then remove them. if (oldBegin == newBegin && oldEnd == newEnd && oldAllDay == newAllDay && TextUtils.equals(oldRrule, newRrule) && TextUtils.equals(oldTimezone, newTimezone)) { values.remove(Events.DTSTART); values.remove(Events.DTEND); values.remove(Events.DURATION); values.remove(Events.ALL_DAY); values.remove(Events.RRULE); values.remove(Events.EVENT_TIMEZONE); return; } if (oldRrule == null || newRrule == null) { return; } // If we are modifying all events then we need to set DTSTART to the // start time of the first event in the series, not the current // date and time. If the start time of the event was changed // (from, say, 3pm to 4pm), then we want to add the time difference // to the start time of the first event in the series (the DTSTART // value). If we are modifying one instance or all following instances, // then we leave the DTSTART field alone. if (mModification == MODIFY_ALL) { long oldStartMillis = mEventCursor.getLong(EVENT_INDEX_DTSTART); if (oldBegin != newBegin) { // The user changed the start time of this event long offset = newBegin - oldBegin; oldStartMillis += offset; } values.put(Events.DTSTART, oldStartMillis); } } static ArrayList<Integer> reminderItemsToMinutes(ArrayList<LinearLayout> reminderItems, ArrayList<Integer> reminderValues) { int len = reminderItems.size(); ArrayList<Integer> reminderMinutes = new ArrayList<Integer>(len); for (int index = 0; index < len; index++) { LinearLayout layout = reminderItems.get(index); Spinner spinner = (Spinner) layout.findViewById(R.id.reminder_value); int minutes = reminderValues.get(spinner.getSelectedItemPosition()); reminderMinutes.add(minutes); } return reminderMinutes; } /** * Saves the reminders, if they changed. Returns true if the database * was updated. * * @param ops the array of ContentProviderOperations * @param eventId the id of the event whose reminders are being updated * @param reminderMinutes the array of reminders set by the user * @param originalMinutes the original array of reminders * @param forceSave if true, then save the reminders even if they didn't * change * @return true if the database was updated */ static boolean saveReminders(ArrayList<ContentProviderOperation> ops, long eventId, ArrayList<Integer> reminderMinutes, ArrayList<Integer> originalMinutes, boolean forceSave) { // If the reminders have not changed, then don't update the database if (reminderMinutes.equals(originalMinutes) && !forceSave) { return false; } // Delete all the existing reminders for this event String where = Reminders.EVENT_ID + "=?"; String[] args = new String[] { Long.toString(eventId) }; Builder b = ContentProviderOperation.newDelete(Reminders.CONTENT_URI); b.withSelection(where, args); ops.add(b.build()); ContentValues values = new ContentValues(); int len = reminderMinutes.size(); // Insert the new reminders, if any for (int i = 0; i < len; i++) { int minutes = reminderMinutes.get(i); values.clear(); values.put(Reminders.MINUTES, minutes); values.put(Reminders.METHOD, Reminders.METHOD_ALERT); values.put(Reminders.EVENT_ID, eventId); b = ContentProviderOperation.newInsert(Reminders.CONTENT_URI).withValues(values); ops.add(b.build()); } return true; } static boolean saveRemindersWithBackRef(ArrayList<ContentProviderOperation> ops, int eventIdIndex, ArrayList<Integer> reminderMinutes, ArrayList<Integer> originalMinutes, boolean forceSave) { // If the reminders have not changed, then don't update the database if (reminderMinutes.equals(originalMinutes) && !forceSave) { return false; } // Delete all the existing reminders for this event Builder b = ContentProviderOperation.newDelete(Reminders.CONTENT_URI); b.withSelection(Reminders.EVENT_ID + "=?", new String[1]); b.withSelectionBackReference(0, eventIdIndex); ops.add(b.build()); ContentValues values = new ContentValues(); int len = reminderMinutes.size(); // Insert the new reminders, if any for (int i = 0; i < len; i++) { int minutes = reminderMinutes.get(i); values.clear(); values.put(Reminders.MINUTES, minutes); values.put(Reminders.METHOD, Reminders.METHOD_ALERT); b = ContentProviderOperation.newInsert(Reminders.CONTENT_URI).withValues(values); b.withValueBackReference(Reminders.EVENT_ID, eventIdIndex); ops.add(b.build()); } return true; } private void addRecurrenceRule(ContentValues values) { updateRecurrenceRule(); if (mRrule == null) { return; } values.put(Events.RRULE, mRrule); long end = mEndTime.toMillis(true /* ignore dst */); long start = mStartTime.toMillis(true /* ignore dst */); String duration; boolean isAllDay = mAllDayCheckBox.isChecked(); if (isAllDay) { long days = (end - start + DateUtils.DAY_IN_MILLIS - 1) / DateUtils.DAY_IN_MILLIS; duration = "P" + days + "D"; } else { long seconds = (end - start) / DateUtils.SECOND_IN_MILLIS; duration = "P" + seconds + "S"; } values.put(Events.DURATION, duration); } private void clearRecurrence() { mEventRecurrence.byday = null; mEventRecurrence.bydayNum = null; mEventRecurrence.bydayCount = 0; mEventRecurrence.bymonth = null; mEventRecurrence.bymonthCount = 0; mEventRecurrence.bymonthday = null; mEventRecurrence.bymonthdayCount = 0; } private void updateRecurrenceRule() { int position = mRepeatsSpinner.getSelectedItemPosition(); int selection = mRecurrenceIndexes.get(position); // Make sure we don't have any leftover data from the previous setting clearRecurrence(); if (selection == DOES_NOT_REPEAT) { mRrule = null; return; } else if (selection == REPEATS_CUSTOM) { // Keep custom recurrence as before. return; } else if (selection == REPEATS_DAILY) { mEventRecurrence.freq = EventRecurrence.DAILY; mEventRecurrence.bydayCount = 0; } else if (selection == REPEATS_EVERY_WEEKDAY) { mEventRecurrence.freq = EventRecurrence.WEEKLY; int dayCount = 5; int[] byday = new int[dayCount]; int[] bydayNum = new int[dayCount]; byday[0] = EventRecurrence.MO; byday[1] = EventRecurrence.TU; byday[2] = EventRecurrence.WE; byday[3] = EventRecurrence.TH; byday[4] = EventRecurrence.FR; for (int day = 0; day < dayCount; day++) { bydayNum[day] = 0; } mEventRecurrence.byday = byday; mEventRecurrence.bydayNum = bydayNum; mEventRecurrence.bydayCount = dayCount; } else if (selection == REPEATS_WEEKLY_ON_DAY) { mEventRecurrence.freq = EventRecurrence.WEEKLY; int[] days = new int[1]; int dayCount = 1; int[] dayNum = new int[dayCount]; days[0] = EventRecurrence.timeDay2Day(mStartTime.weekDay); // not sure why this needs to be zero, but set it for now. dayNum[0] = 0; mEventRecurrence.byday = days; mEventRecurrence.bydayNum = dayNum; mEventRecurrence.bydayCount = dayCount; } else if (selection == REPEATS_MONTHLY_ON_DAY) { mEventRecurrence.freq = EventRecurrence.MONTHLY; mEventRecurrence.bydayCount = 0; mEventRecurrence.bymonthdayCount = 1; int[] bymonthday = new int[1]; bymonthday[0] = mStartTime.monthDay; mEventRecurrence.bymonthday = bymonthday; } else if (selection == REPEATS_MONTHLY_ON_DAY_COUNT) { mEventRecurrence.freq = EventRecurrence.MONTHLY; mEventRecurrence.bydayCount = 1; mEventRecurrence.bymonthdayCount = 0; int[] byday = new int[1]; int[] bydayNum = new int[1]; // Compute the week number (for example, the "2nd" Monday) int dayCount = 1 + ((mStartTime.monthDay - 1) / 7); if (dayCount == 5) { dayCount = -1; } bydayNum[0] = dayCount; byday[0] = EventRecurrence.timeDay2Day(mStartTime.weekDay); mEventRecurrence.byday = byday; mEventRecurrence.bydayNum = bydayNum; } else if (selection == REPEATS_YEARLY) { mEventRecurrence.freq = EventRecurrence.YEARLY; } // Set the week start day. mEventRecurrence.wkst = EventRecurrence.calendarDay2Day(mFirstDayOfWeek); mRrule = mEventRecurrence.toString(); } //a21654 for random string private static Random randGen = null; private static char[] numbersAndLetters = null; private static Object initLock = new Object(); public static final String randomString(int length) { if (length < 1) { return null; } if (randGen == null) { synchronized (initLock) { if (randGen == null) { randGen = new Random(); numbersAndLetters = ("0123456789abcdefghijklmnopqrstuvwxyz").toCharArray(); } } } char [] randBuffer = new char[length]; for (int i=0; i<randBuffer.length; i++) { randBuffer[i] = numbersAndLetters[randGen.nextInt(35)]; } return new String(randBuffer); } //a21654 end private ContentValues getContentValuesFromUi() { String title = mTitleTextView.getText().toString().trim(); boolean isAllDay = mAllDayCheckBox.isChecked(); String location = mLocationTextView.getText().toString().trim(); String description = mDescriptionTextView.getText().toString().trim(); ContentValues values = new ContentValues(); String timezone = null; long startMillis; long endMillis; long calendarId; if (isAllDay) { // Reset start and end time, increment the monthDay by 1, and set // the timezone to UTC, as required for all-day events. timezone = Time.TIMEZONE_UTC; mStartTime.hour = 0; mStartTime.minute = 0; mStartTime.second = 0; mStartTime.timezone = timezone; startMillis = mStartTime.normalize(true); mEndTime.hour = 0; mEndTime.minute = 0; mEndTime.second = 0; mEndTime.monthDay++; mEndTime.timezone = timezone; endMillis = mEndTime.normalize(true); if (mEventCursor == null) { // This is a new event calendarId = mCalendarsSpinner.getSelectedItemId(); } else { calendarId = mInitialValues.getAsLong(Events.CALENDAR_ID); } } else { startMillis = mStartTime.toMillis(true); endMillis = mEndTime.toMillis(true); if (mEventCursor != null) { // This is an existing event timezone = mEventCursor.getString(EVENT_INDEX_TIMEZONE); // The timezone might be null if we are changing an existing // all-day event to a non-all-day event. We need to assign // a timezone to the non-all-day event. if (TextUtils.isEmpty(timezone)) { timezone = TimeZone.getDefault().getID(); } calendarId = mInitialValues.getAsLong(Events.CALENDAR_ID); } else { // This is a new event calendarId = mCalendarsSpinner.getSelectedItemId(); // The timezone for a new event is the currently displayed // timezone, NOT the timezone of the containing calendar. timezone = TimeZone.getDefault().getID(); } } values.put(Events.CALENDAR_ID, calendarId); values.put(Events.EVENT_TIMEZONE, timezone); values.put(Events.TITLE, title); values.put(Events.ALL_DAY, isAllDay ? 1 : 0); values.put(Events.DTSTART, startMillis); values.put(Events.DTEND, endMillis); values.put(Events.DESCRIPTION, description); values.put(Events.EVENT_LOCATION, location); values.put(Events.TRANSPARENCY, mAvailabilitySpinner.getSelectedItemPosition()); int visibility = mVisibilitySpinner.getSelectedItemPosition(); if (visibility > 0) { // For now we the array contains the values 0, 2, and 3. We add one to match. visibility++; } values.put(Events.VISIBILITY, visibility); return values; } private boolean isEmpty() { String title = mTitleTextView.getText().toString().trim(); if (title.length() > 0) { return false; } String location = mLocationTextView.getText().toString().trim(); if (location.length() > 0) { return false; } String description = mDescriptionTextView.getText().toString().trim(); if (description.length() > 0) { return false; } return true; } private boolean isCustomRecurrence() { if (mEventRecurrence.until != null || mEventRecurrence.interval != 0) { return true; } if (mEventRecurrence.freq == 0) { return false; } switch (mEventRecurrence.freq) { case EventRecurrence.DAILY: return false; case EventRecurrence.WEEKLY: if (mEventRecurrence.repeatsOnEveryWeekDay() && isWeekdayEvent()) { return false; } else if (mEventRecurrence.bydayCount == 1) { return false; } break; case EventRecurrence.MONTHLY: if (mEventRecurrence.repeatsMonthlyOnDayCount()) { return false; } else if (mEventRecurrence.bydayCount == 0 && mEventRecurrence.bymonthdayCount == 1) { return false; } break; case EventRecurrence.YEARLY: return false; } return true; } private boolean isWeekdayEvent() { if (mStartTime.weekDay != Time.SUNDAY && mStartTime.weekDay != Time.SATURDAY) { return true; } return false; } }