From 296ea5d93c0f16aa1de251790d425e1e85ea2f9e Mon Sep 17 00:00:00 2001 From: Alon Albert Date: Wed, 19 Jun 2013 09:19:04 -0700 Subject: Process RSVP Intent Without Event Editor When processing an RSVP Intent (https://www.google.com/calendar/event?action=RESPOND) there's no need to open the event. Simpy update the RSVP directly from the intent handler. Change-Id: I66c8c533b8babe64aa4083dc998b497c04ded2c9 --- res/values/strings.xml | 12 +++ .../calendar/GoogleCalendarUriIntentFilter.java | 112 ++++++++++++++------- 2 files changed, 89 insertions(+), 35 deletions(-) diff --git a/res/values/strings.xml b/res/values/strings.xml index 49bcf874..caec61b5 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -208,6 +208,18 @@ "Invitations will be sent." "Updates will be sent." + + + "Responded yes." + + "Responded maybe." + + "Responded no." + + diff --git a/src/com/android/calendar/GoogleCalendarUriIntentFilter.java b/src/com/android/calendar/GoogleCalendarUriIntentFilter.java index 4a3c0cbd..fef89e8e 100644 --- a/src/com/android/calendar/GoogleCalendarUriIntentFilter.java +++ b/src/com/android/calendar/GoogleCalendarUriIntentFilter.java @@ -17,26 +17,24 @@ package com.android.calendar; -import static android.provider.CalendarContract.Attendees.ATTENDEE_STATUS; -import static android.provider.CalendarContract.Attendees.ATTENDEE_STATUS_ACCEPTED; -import static android.provider.CalendarContract.Attendees.ATTENDEE_STATUS_DECLINED; -import static android.provider.CalendarContract.Attendees.ATTENDEE_STATUS_NONE; -import static android.provider.CalendarContract.Attendees.ATTENDEE_STATUS_TENTATIVE; -import static android.provider.CalendarContract.EXTRA_EVENT_BEGIN_TIME; -import static android.provider.CalendarContract.EXTRA_EVENT_END_TIME; - import android.app.Activity; import android.content.ActivityNotFoundException; +import android.content.AsyncQueryHandler; +import android.content.ContentResolver; import android.content.ContentUris; +import android.content.ContentValues; import android.content.Intent; import android.database.Cursor; import android.net.Uri; import android.os.Bundle; +import android.provider.CalendarContract; +import android.provider.CalendarContract.Attendees; import android.provider.CalendarContract.Calendars; import android.provider.CalendarContract.Events; import android.text.TextUtils; import android.util.Base64; import android.util.Log; +import android.widget.Toast; import com.android.calendarcommon2.DateException; import com.android.calendarcommon2.Duration; @@ -144,11 +142,14 @@ public class GoogleCalendarUriIntentFilter extends Activity { Uri uri = intent.getData(); if (uri != null) { String[] eidParts = extractEidAndEmail(uri); - if (debug) Log.d(TAG, "eidParts=" + eidParts ); - - if (eidParts != null) { - final String selection = Events._SYNC_ID + " LIKE \"%" + eidParts[0] - + "\" AND " + Calendars.OWNER_ACCOUNT + " LIKE \"" + eidParts[1] + "\""; + if (eidParts == null) { + Log.i(TAG, "Could not find event for uri: " +uri); + } else { + final String syncId = eidParts[0]; + final String ownerAccount = eidParts[1]; + if (debug) Log.d(TAG, "eidParts=" + syncId + "/" + ownerAccount); + final String selection = Events._SYNC_ID + " LIKE \"%" + syncId + "\" AND " + + Calendars.OWNER_ACCOUNT + " LIKE \"" + ownerAccount + "\""; if (debug) Log.d(TAG, "selection: " + selection); Cursor eventCursor = getContentResolver().query(Events.CONTENT_URI, @@ -156,13 +157,15 @@ public class GoogleCalendarUriIntentFilter extends Activity { Calendars.CALENDAR_ACCESS_LEVEL + " desc"); if (debug) Log.d(TAG, "Found: " + eventCursor.getCount()); - if (eventCursor != null && eventCursor.getCount() > 0) { - if (eventCursor.getCount() > 1) { - Log.i(TAG, "NOTE: found " + eventCursor.getCount() - + " matches on event with id='" + eidParts[0] + "'"); - // Don't print eidPart[1] as it contains the user's PII - } + if (eventCursor == null || eventCursor.getCount() == 0) { + Log.i(TAG, "NOTE: found no matches on event with id='" + syncId + "'"); + return; + } + Log.i(TAG, "NOTE: found " + eventCursor.getCount() + + " matches on event with id='" + syncId + "'"); + // Don't print eidPart[1] as it contains the user's PII + try { // Get info from Cursor while (eventCursor.moveToNext()) { int eventId = eventCursor.getInt(EVENT_INDEX_ID); @@ -194,22 +197,19 @@ public class GoogleCalendarUriIntentFilter extends Activity { } } - eventCursor.close(); - eventCursor = null; - // Pick up attendee status action from uri clicked - int attendeeStatus = ATTENDEE_STATUS_NONE; + int attendeeStatus = Attendees.ATTENDEE_STATUS_NONE; if ("RESPOND".equals(uri.getQueryParameter("action"))) { try { switch (Integer.parseInt(uri.getQueryParameter("rst"))) { case 1: // Yes - attendeeStatus = ATTENDEE_STATUS_ACCEPTED; + attendeeStatus = Attendees.ATTENDEE_STATUS_ACCEPTED; break; case 2: // No - attendeeStatus = ATTENDEE_STATUS_DECLINED; + attendeeStatus = Attendees.ATTENDEE_STATUS_DECLINED; break; case 3: // Maybe - attendeeStatus = ATTENDEE_STATUS_TENTATIVE; + attendeeStatus = Attendees.ATTENDEE_STATUS_TENTATIVE; break; } } catch (NumberFormatException e) { @@ -218,22 +218,24 @@ public class GoogleCalendarUriIntentFilter extends Activity { } } - // Send intent to calendar app - Uri calendarUri = ContentUris.withAppendedId(Events.CONTENT_URI, - eventId); + final Uri calendarUri = ContentUris.withAppendedId( + Events.CONTENT_URI, eventId); intent = new Intent(Intent.ACTION_VIEW, calendarUri); intent.setClass(this, EventInfoActivity.class); - intent.putExtra(EXTRA_EVENT_BEGIN_TIME, startMillis); - intent.putExtra(EXTRA_EVENT_END_TIME, endMillis); - if (attendeeStatus != ATTENDEE_STATUS_NONE) { - intent.putExtra(ATTENDEE_STATUS, attendeeStatus); + intent.putExtra(CalendarContract.EXTRA_EVENT_BEGIN_TIME, startMillis); + intent.putExtra(CalendarContract.EXTRA_EVENT_END_TIME, endMillis); + if (attendeeStatus == Attendees.ATTENDEE_STATUS_NONE) { + startActivity(intent); + } else { + updateSelfAttendeeStatus( + eventId, ownerAccount, attendeeStatus, intent); } - startActivity(intent); finish(); return; } + } finally { + eventCursor.close(); } - if (eventCursor != null) eventCursor.close(); } } @@ -246,4 +248,44 @@ public class GoogleCalendarUriIntentFilter extends Activity { } finish(); } + + private void updateSelfAttendeeStatus( + int eventId, String ownerAccount, final int status, final Intent intent) { + final ContentResolver cr = getContentResolver(); + final AsyncQueryHandler queryHandler = + new AsyncQueryHandler(cr) { + @Override + protected void onUpdateComplete(int token, Object cookie, int result) { + if (result == 0) { + Log.w(TAG, "No rows updated - starting event viewer"); + intent.putExtra(Attendees.ATTENDEE_STATUS, status); + startActivity(intent); + return; + } + final int toastId; + switch (status) { + case Attendees.ATTENDEE_STATUS_ACCEPTED: + toastId = R.string.rsvp_accepted; + break; + case Attendees.ATTENDEE_STATUS_DECLINED: + toastId = R.string.rsvp_declined; + break; + case Attendees.ATTENDEE_STATUS_TENTATIVE: + toastId = R.string.rsvp_tentative; + break; + default: + return; + } + Toast.makeText(GoogleCalendarUriIntentFilter.this, + toastId, Toast.LENGTH_LONG).show(); + } + }; + final ContentValues values = new ContentValues(); + values.put(Attendees.ATTENDEE_STATUS, status); + queryHandler.startUpdate(0, null, + Attendees.CONTENT_URI, + values, + Attendees.ATTENDEE_EMAIL + "=? AND " + Attendees.EVENT_ID + "=?", + new String[]{ ownerAccount, String.valueOf(eventId) }); + } } -- cgit v1.2.3 From 244d94f9a1a433fd3403452f2cdeba5c862b9650 Mon Sep 17 00:00:00 2001 From: Daniel Sandler Date: Mon, 19 Aug 2013 12:06:25 -0400 Subject: Call build() on the Builder, not the Style. There are bugs in Style.build() around extras that this avoids. This CL also uses the setStyle() API to make it more explicit that calling build() on the Builder will still include everything in the Style. Bug: 10387352 Change-Id: I5f3d8d59944885d2c87369cbdc81cb57f248fcc7 --- src/com/android/calendar/alerts/AlertReceiver.java | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/com/android/calendar/alerts/AlertReceiver.java b/src/com/android/calendar/alerts/AlertReceiver.java index 481619d9..83dcc9fc 100644 --- a/src/com/android/calendar/alerts/AlertReceiver.java +++ b/src/com/android/calendar/alerts/AlertReceiver.java @@ -417,8 +417,7 @@ public class AlertReceiver extends BroadcastReceiver { priority, true); if (Utils.isJellybeanOrLater()) { // Create a new-style expanded notification - Notification.BigTextStyle expandedBuilder = new Notification.BigTextStyle( - basicBuilder); + Notification.BigTextStyle expandedBuilder = new Notification.BigTextStyle(); if (description != null) { description = mBlankLinePattern.matcher(description).replaceAll(""); description = description.trim(); @@ -436,7 +435,8 @@ public class AlertReceiver extends BroadcastReceiver { text = stringBuilder; } expandedBuilder.bigText(text); - notification = expandedBuilder.build(); + basicBuilder.setStyle(expandedBuilder); + notification = basicBuilder.build(); } return new NotificationWrapper(notification, notificationId, eventId, startMillis, endMillis, doPopup); @@ -495,8 +495,7 @@ public class AlertReceiver extends BroadcastReceiver { if (expandable) { // Multiple reminders. Combine into an expanded digest notification. - Notification.InboxStyle expandedBuilder = new Notification.InboxStyle( - notificationBuilder); + Notification.InboxStyle expandedBuilder = new Notification.InboxStyle(); int i = 0; for (AlertService.NotificationInfo info : notificationInfos) { if (i < NOTIFICATION_DIGEST_MAX_LENGTH) { @@ -541,11 +540,10 @@ public class AlertReceiver extends BroadcastReceiver { // Remove the title in the expanded form (redundant with the listed items). expandedBuilder.setBigContentTitle(""); - - n = expandedBuilder.build(); - } else { - n = notificationBuilder.build(); + notificationBuilder.setStyle(expandedBuilder); } + + n = notificationBuilder.build(); } else { // Old-style notification (pre-JB). We only need a standard notification (no // buttons) but use a custom view so it is consistent with the others. -- cgit v1.2.3 From 11698040ff0ce6692a8670e447e4aa80492c7946 Mon Sep 17 00:00:00 2001 From: Isaac Katzenelson Date: Thu, 22 Aug 2013 11:12:36 -0700 Subject: Remove negative margin fron all day label Bug: 10439003 Change-Id: I75663deb0a27dd09a5f4e68df76dbd98482c4dfd --- res/layout/edit_event_1.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/res/layout/edit_event_1.xml b/res/layout/edit_event_1.xml index fb2955af..cc7743b2 100644 --- a/res/layout/edit_event_1.xml +++ b/res/layout/edit_event_1.xml @@ -309,7 +309,6 @@ android:layout_height="wrap_content" android:layout_width="0dip" android:layout_weight="1" - android:layout_marginLeft="-8dip" android:layout_gravity="center_vertical|left" android:gravity="center_vertical|left" style="@style/TextAppearance.EditEvent_Small" /> -- cgit v1.2.3 From e8305d6e1674bcc7cdb4e99e50f48fbcfd23d4db Mon Sep 17 00:00:00 2001 From: Isaac Katzenelson Date: Tue, 3 Sep 2013 14:56:26 -0700 Subject: Use setExact on K and up only. Bug: 9926186 Change-Id: Ib81c56b01f1c28f811c0e96582582c4bb5d32c37 --- src/com/android/calendar/Utils.java | 9 +++++++++ src/com/android/calendar/alerts/AlertUtils.java | 6 +++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/src/com/android/calendar/Utils.java b/src/com/android/calendar/Utils.java index fc409cd4..40a9e58d 100644 --- a/src/com/android/calendar/Utils.java +++ b/src/com/android/calendar/Utils.java @@ -207,6 +207,15 @@ public class Utils { return Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN; } + /** + * Returns whether the SDK is the KeyLimePie release or later. + */ + public static boolean isKeyLimePieOrLater() { + // TODO when SDK is set to 19, switch back to this: +// return Build.VERSION.SDK_INT > Build.VERSION_CODES.JELLY_BEAN_MR2; + return "KeyLimePie".equals(Build.VERSION.CODENAME); + } + public static int getViewTypeFromIntentAndSharedPref(Activity activity) { Intent intent = activity.getIntent(); Bundle extras = intent.getExtras(); diff --git a/src/com/android/calendar/alerts/AlertUtils.java b/src/com/android/calendar/alerts/AlertUtils.java index a082fdf7..fec7b111 100644 --- a/src/com/android/calendar/alerts/AlertUtils.java +++ b/src/com/android/calendar/alerts/AlertUtils.java @@ -88,7 +88,11 @@ public class AlertUtils { return new AlarmManagerInterface() { @Override public void set(int type, long triggerAtMillis, PendingIntent operation) { - mgr.set(type, triggerAtMillis, operation); + if (Utils.isKeyLimePieOrLater()) { + mgr.setExact(type, triggerAtMillis, operation); + } else { + mgr.set(type, triggerAtMillis, operation); + } } }; } -- cgit v1.2.3 From ffd6101165b330a379bc7e73ebf88583a74198b0 Mon Sep 17 00:00:00 2001 From: Alon Albert Date: Fri, 6 Sep 2013 10:29:56 -0700 Subject: Support PreferenceActivity.isValidFragment Bug: 10114368 Change-Id: Ifbca00ef9bf58153dc34aa52def877eb0fdadaec --- src/com/android/calendar/CalendarSettingsActivity.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/com/android/calendar/CalendarSettingsActivity.java b/src/com/android/calendar/CalendarSettingsActivity.java index 0584521f..a864b532 100644 --- a/src/com/android/calendar/CalendarSettingsActivity.java +++ b/src/com/android/calendar/CalendarSettingsActivity.java @@ -112,6 +112,12 @@ public class CalendarSettingsActivity extends PreferenceActivity { super.onPause(); } + @Override + protected boolean isValidFragment(String fragmentName) { + // This activity is not exported so we can just approve everything + return true; + } + Runnable mCheckAccounts = new Runnable() { @Override public void run() { -- cgit v1.2.3 From 96cce4ae26c09dfc552fe98ae1dac667914d7e5c Mon Sep 17 00:00:00 2001 From: Alon Albert Date: Fri, 6 Sep 2013 13:18:15 -0700 Subject: Abort onClick if no Window Focus Bug: 9526263 Change-Id: I46a03c5d542dfe57f71c885e3156a44185a690cb --- .../android/calendar/event/EditEventFragment.java | 38 +++++++++++----------- src/com/android/calendar/event/EditEventView.java | 9 ++++- 2 files changed, 27 insertions(+), 20 deletions(-) diff --git a/src/com/android/calendar/event/EditEventFragment.java b/src/com/android/calendar/event/EditEventFragment.java index e1d59f8e..2c966e94 100644 --- a/src/com/android/calendar/event/EditEventFragment.java +++ b/src/com/android/calendar/event/EditEventFragment.java @@ -126,7 +126,7 @@ public class EditEventFragment extends Fragment implements EventHandler, OnColor private EventColorPickerDialog mColorPickerDialog; - private Activity mContext; + private Activity mActivity; private final Done mOnDone = new Done(); private boolean mSaveOnDetach = true; @@ -545,7 +545,7 @@ public class EditEventFragment extends Fragment implements EventHandler, OnColor @Override public void onAttach(Activity activity) { super.onAttach(activity); - mContext = activity; + mActivity = activity; mHelper = new EditEventHelper(activity, null); mHandler = new QueryHandler(activity.getContentResolver()); @@ -553,7 +553,7 @@ public class EditEventFragment extends Fragment implements EventHandler, OnColor mInputMethodManager = (InputMethodManager) activity.getSystemService(Context.INPUT_METHOD_SERVICE); - mUseCustomActionBar = !Utils.getConfigBool(mContext, R.bool.multiple_pane_config); + mUseCustomActionBar = !Utils.getConfigBool(mActivity, R.bool.multiple_pane_config); } @Override @@ -566,19 +566,19 @@ public class EditEventFragment extends Fragment implements EventHandler, OnColor } else { view = inflater.inflate(R.layout.edit_event, null); } - mView = new EditEventView(mContext, view, mOnDone, mTimeSelectedWasStartTime, + mView = new EditEventView(mActivity, view, mOnDone, mTimeSelectedWasStartTime, mDateSelectedWasStartDate); startQuery(); if (mUseCustomActionBar) { View actionBarButtons = inflater.inflate(R.layout.edit_event_custom_actionbar, - new LinearLayout(mContext), false); + new LinearLayout(mActivity), false); View cancelActionView = actionBarButtons.findViewById(R.id.action_cancel); cancelActionView.setOnClickListener(mActionBarListener); View doneActionView = actionBarButtons.findViewById(R.id.action_done); doneActionView.setOnClickListener(mActionBarListener); - mContext.getActionBar().setCustomView(actionBarButtons); + mActivity.getActionBar().setCustomView(actionBarButtons); } return view; @@ -589,7 +589,7 @@ public class EditEventFragment extends Fragment implements EventHandler, OnColor super.onDestroyView(); if (mUseCustomActionBar) { - mContext.getActionBar().setCustomView(null); + mActivity.getActionBar().setCustomView(null); } } @@ -702,7 +702,7 @@ public class EditEventFragment extends Fragment implements EventHandler, OnColor service.startUpdate(0, null, uri, values, null, null, 0); } - Toast.makeText(mContext, R.string.saving_event, Toast.LENGTH_SHORT).show(); + Toast.makeText(mActivity, R.string.saving_event, Toast.LENGTH_SHORT).show(); } protected void displayEditWhichDialog() { @@ -728,13 +728,13 @@ public class EditEventFragment extends Fragment implements EventHandler, OnColor } else { items = new CharSequence[3]; } - items[itemIndex++] = mContext.getText(R.string.modify_event); + items[itemIndex++] = mActivity.getText(R.string.modify_event); } - items[itemIndex++] = mContext.getText(R.string.modify_all); + items[itemIndex++] = mActivity.getText(R.string.modify_all); // Do one more check to make sure this remains at the end of the list if (!isFirstEventInSeries) { - items[itemIndex++] = mContext.getText(R.string.modify_all_following); + items[itemIndex++] = mActivity.getText(R.string.modify_all_following); } // Display the modification dialog. @@ -742,7 +742,7 @@ public class EditEventFragment extends Fragment implements EventHandler, OnColor mModifyDialog.dismiss(); mModifyDialog = null; } - mModifyDialog = new AlertDialog.Builder(mContext).setTitle(R.string.edit_event_label) + mModifyDialog = new AlertDialog.Builder(mActivity).setTitle(R.string.edit_event_label) .setItems(items, new OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { @@ -818,9 +818,9 @@ public class EditEventFragment extends Fragment implements EventHandler, OnColor stringResource = R.string.creating_event; } } - Toast.makeText(mContext, stringResource, Toast.LENGTH_SHORT).show(); + Toast.makeText(mActivity, stringResource, Toast.LENGTH_SHORT).show(); } else if ((mCode & Utils.DONE_SAVE) != 0 && mModel != null && isEmptyNewEvent()) { - Toast.makeText(mContext, R.string.empty_event, Toast.LENGTH_SHORT).show(); + Toast.makeText(mActivity, R.string.empty_event, Toast.LENGTH_SHORT).show(); } if ((mCode & Utils.DONE_DELETE) != 0 && mOriginalModel != null @@ -840,7 +840,7 @@ public class EditEventFragment extends Fragment implements EventHandler, OnColor break; } DeleteEventHelper deleteHelper = new DeleteEventHelper( - mContext, mContext, !mIsReadOnly /* exitWhenDone */); + mActivity, mActivity, !mIsReadOnly /* exitWhenDone */); deleteHelper.delete(begin, end, mOriginalModel, which); } @@ -848,13 +848,13 @@ public class EditEventFragment extends Fragment implements EventHandler, OnColor // This will exit the edit event screen, should be called // when we want to return to the main calendar views if ((mCode & Utils.DONE_SAVE) != 0) { - if (mContext != null) { + if (mActivity != null) { long start = mModel.mStart; long end = mModel.mEnd; if (mModel.mAllDay) { // For allday events we want to go to the day in the // user's current tz - String tz = Utils.getTimeZone(mContext, null); + String tz = Utils.getTimeZone(mActivity, null); Time t = new Time(Time.TIMEZONE_UTC); t.set(start); t.timezone = tz; @@ -865,7 +865,7 @@ public class EditEventFragment extends Fragment implements EventHandler, OnColor t.timezone = tz; end = t.toMillis(true); } - CalendarController.getInstance(mContext).launchViewEvent(-1, start, end, + CalendarController.getInstance(mActivity).launchViewEvent(-1, start, end, Attendees.ATTENDEE_STATUS_NONE); } } @@ -877,7 +877,7 @@ public class EditEventFragment extends Fragment implements EventHandler, OnColor // Hide a software keyboard so that user won't see it even after this Fragment's // disappearing. - final View focusedView = mContext.getCurrentFocus(); + final View focusedView = mActivity.getCurrentFocus(); if (focusedView != null) { mInputMethodManager.hideSoftInputFromWindow(focusedView.getWindowToken(), 0); focusedView.clearFocus(); diff --git a/src/com/android/calendar/event/EditEventView.java b/src/com/android/calendar/event/EditEventView.java index 1dbc946e..a06774b8 100644 --- a/src/com/android/calendar/event/EditEventView.java +++ b/src/com/android/calendar/event/EditEventView.java @@ -498,7 +498,14 @@ public class EditEventView implements View.OnClickListener, DialogInterface.OnCa @Override public void onClick(View v) { - + if (!mView.hasWindowFocus()) { + // Don't do anything if the activity if paused. Since Activity doesn't + // have a built in way to do this, we would have to implement one ourselves and + // either cast our Activity to a specialized activity base class or implement some + // generic interface that tells us if an activity is paused. hasWindowFocus() is + // close enough if not quite perfect. + return; + } if (v == mStartDateButton) { mDateSelectedWasStartDate = true; } else { -- cgit v1.2.3 From 4b6f921430685fa04f5b24f577029de9a411502e Mon Sep 17 00:00:00 2001 From: Isaac Katzenelson Date: Fri, 6 Sep 2013 15:59:01 -0700 Subject: New xxhdpi assets Bug: 10490607 Change-Id: Ie6e5ec7379e866bdd203fb2af23669918b663ebb --- res/drawable-hdpi/cal_widget_bg.9.png | Bin 165 -> 176 bytes res/drawable-hdpi/calendar_widget_preview.png | Bin 18964 -> 19028 bytes ...lname_bottom_select_underselect_holo_light.9.png | Bin 548 -> 568 bytes ...ttom_select_underselect_pressed_holo_light.9.png | Bin 585 -> 584 bytes ...e_bottom_select_underunselected_holo_light.9.png | Bin 728 -> 743 bytes ..._select_underunselected_pressed_holo_light.9.png | Bin 774 -> 781 bytes ...e_bottom_unselected_underselect_holo_light.9.png | Bin 526 -> 514 bytes ..._unselected_underselect_pressed_holo_light.9.png | Bin 570 -> 555 bytes .../calname_select_underunselected_holo_light.9.png | Bin 430 -> 430 bytes ..._select_underunselected_pressed_holo_light.9.png | Bin 512 -> 510 bytes .../calname_unselected_underselect_holo_light.9.png | Bin 498 -> 500 bytes ..._unselected_underselect_pressed_holo_light.9.png | Bin 523 -> 529 bytes res/drawable-hdpi/event_bg_declined.png | Bin 0 -> 92 bytes .../header_bg_cal_widget_focused_holo.9.png | Bin 495 -> 514 bytes .../header_bg_cal_widget_normal_holo.9.png | Bin 385 -> 373 bytes .../header_bg_cal_widget_pressed_holo.9.png | Bin 418 -> 409 bytes .../ic_allday_collapse_large_holo_light.png | Bin 0 -> 1039 bytes .../ic_allday_collapse_small_holo_light.png | Bin 0 -> 651 bytes .../ic_allday_expand_large_holo_light.png | Bin 0 -> 1040 bytes .../ic_allday_expand_small_holo_light.png | Bin 0 -> 651 bytes .../ic_colorpicker_swatch_selected.png | Bin 0 -> 2414 bytes res/drawable-hdpi/ic_colorpicker_swatch_stroke.png | Bin 0 -> 2843 bytes res/drawable-hdpi/ic_contact_picture.png | Bin 5929 -> 1380 bytes res/drawable-hdpi/ic_menu_add_event_holo_light.png | Bin 856 -> 1067 bytes res/drawable-hdpi/ic_menu_add_field_holo_light.png | Bin 1354 -> 1705 bytes res/drawable-hdpi/ic_menu_cancel_holo_light.png | Bin 703 -> 840 bytes res/drawable-hdpi/ic_menu_colorpicker_pressed.png | Bin 0 -> 1606 bytes res/drawable-hdpi/ic_menu_compose_holo_light.png | Bin 1333 -> 1627 bytes .../ic_menu_compose_pressed_holo_dark.png | Bin 0 -> 1655 bytes res/drawable-hdpi/ic_menu_done_holo_light.png | Bin 924 -> 1093 bytes res/drawable-hdpi/ic_menu_refresh_holo_light.png | Bin 1373 -> 1692 bytes .../ic_menu_remove_field_holo_light.png | Bin 703 -> 840 bytes res/drawable-hdpi/ic_menu_search_holo_light.png | Bin 1227 -> 1529 bytes res/drawable-hdpi/ic_menu_settings_holo_light.png | Bin 1219 -> 1545 bytes res/drawable-hdpi/ic_menu_trash_holo_light.png | Bin 1001 -> 1285 bytes .../ic_menu_trash_pressed_holo_dark.png | Bin 0 -> 1271 bytes res/drawable-hdpi/ic_recurrence_bubble_fill.png | Bin 1930 -> 1892 bytes .../list_multi_left_activated_holo.9.png | Bin 1196 -> 1175 bytes .../list_multi_left_focused_holo.9.png | Bin 354 -> 353 bytes .../list_multi_left_pressed_holo.9.png | Bin 266 -> 265 bytes .../minical_bg_shadow_holo_light.9.png | Bin 462 -> 470 bytes res/drawable-hdpi/stat_notify_calendar.png | Bin 709 -> 854 bytes .../timeline_indicator_activated_holo_light.9.png | Bin 364 -> 368 bytes .../timeline_indicator_holo_light.9.png | Bin 346 -> 350 bytes res/drawable-mdpi/cal_widget_bg.9.png | Bin 153 -> 166 bytes res/drawable-mdpi/calendar_widget_preview.png | Bin 11667 -> 11631 bytes ...e_bottom_select_underunselected_holo_light.9.png | Bin 488 -> 484 bytes ..._select_underunselected_pressed_holo_light.9.png | Bin 524 -> 527 bytes ...e_bottom_unselected_underselect_holo_light.9.png | Bin 376 -> 379 bytes ..._unselected_underselect_pressed_holo_light.9.png | Bin 403 -> 410 bytes .../calname_select_underunselected_holo_light.9.png | Bin 298 -> 290 bytes ..._select_underunselected_pressed_holo_light.9.png | Bin 341 -> 330 bytes .../calname_unselected_underselect_holo_light.9.png | Bin 350 -> 352 bytes ..._unselected_underselect_pressed_holo_light.9.png | Bin 388 -> 382 bytes res/drawable-mdpi/event_bg_declined.png | Bin 0 -> 85 bytes .../header_bg_cal_widget_focused_holo.9.png | Bin 430 -> 424 bytes .../header_bg_cal_widget_normal_holo.9.png | Bin 289 -> 279 bytes .../header_bg_cal_widget_pressed_holo.9.png | Bin 333 -> 320 bytes .../ic_allday_collapse_large_holo_light.png | Bin 0 -> 767 bytes .../ic_allday_collapse_small_holo_light.png | Bin 0 -> 534 bytes .../ic_allday_expand_large_holo_light.png | Bin 0 -> 765 bytes .../ic_allday_expand_small_holo_light.png | Bin 0 -> 514 bytes .../ic_colorpicker_swatch_selected.png | Bin 0 -> 1662 bytes res/drawable-mdpi/ic_colorpicker_swatch_stroke.png | Bin 0 -> 1783 bytes res/drawable-mdpi/ic_contact_picture.png | Bin 4733 -> 981 bytes res/drawable-mdpi/ic_menu_add_event_holo_light.png | Bin 693 -> 866 bytes res/drawable-mdpi/ic_menu_add_field_holo_light.png | Bin 909 -> 1103 bytes res/drawable-mdpi/ic_menu_cancel_holo_light.png | Bin 603 -> 748 bytes res/drawable-mdpi/ic_menu_colorpicker_pressed.png | Bin 0 -> 1090 bytes res/drawable-mdpi/ic_menu_compose_holo_light.png | Bin 901 -> 1115 bytes .../ic_menu_compose_pressed_holo_dark.png | Bin 0 -> 1118 bytes res/drawable-mdpi/ic_menu_done_holo_light.png | Bin 658 -> 808 bytes res/drawable-mdpi/ic_menu_refresh_holo_light.png | Bin 922 -> 1157 bytes .../ic_menu_remove_field_holo_light.png | Bin 603 -> 748 bytes res/drawable-mdpi/ic_menu_search_holo_light.png | Bin 871 -> 1073 bytes res/drawable-mdpi/ic_menu_settings_holo_light.png | Bin 850 -> 1068 bytes res/drawable-mdpi/ic_menu_trash_holo_light.png | Bin 746 -> 914 bytes .../ic_menu_trash_pressed_holo_dark.png | Bin 0 -> 924 bytes res/drawable-mdpi/ic_recurrence_bubble_fill.png | Bin 1338 -> 1300 bytes .../list_multi_left_activated_holo.9.png | Bin 722 -> 701 bytes res/drawable-mdpi/stat_notify_calendar.png | Bin 583 -> 709 bytes .../timeline_indicator_activated_holo_light.9.png | Bin 289 -> 286 bytes .../timeline_indicator_holo_light.9.png | Bin 279 -> 278 bytes res/drawable-xhdpi/cal_widget_bg.9.png | Bin 185 -> 196 bytes res/drawable-xhdpi/calendar_widget_preview.png | Bin 26418 -> 26466 bytes ...lname_bottom_select_underselect_holo_light.9.png | Bin 702 -> 718 bytes ...ttom_select_underselect_pressed_holo_light.9.png | Bin 720 -> 735 bytes ...e_bottom_select_underunselected_holo_light.9.png | Bin 979 -> 999 bytes ..._select_underunselected_pressed_holo_light.9.png | Bin 1029 -> 1058 bytes ...e_bottom_unselected_underselect_holo_light.9.png | Bin 697 -> 673 bytes ..._unselected_underselect_pressed_holo_light.9.png | Bin 742 -> 732 bytes .../calname_select_underunselected_holo_light.9.png | Bin 534 -> 509 bytes ..._select_underunselected_pressed_holo_light.9.png | Bin 590 -> 578 bytes .../calname_unselected_underselect_holo_light.9.png | Bin 607 -> 610 bytes ..._unselected_underselect_pressed_holo_light.9.png | Bin 670 -> 680 bytes res/drawable-xhdpi/event_bg_declined.png | Bin 0 -> 104 bytes .../header_bg_cal_widget_focused_holo.9.png | Bin 624 -> 632 bytes .../header_bg_cal_widget_normal_holo.9.png | Bin 466 -> 458 bytes .../header_bg_cal_widget_pressed_holo.9.png | Bin 520 -> 509 bytes res/drawable-xhdpi/ic_alarm_dark.png | Bin 811 -> 1050 bytes res/drawable-xhdpi/ic_alarm_white.png | Bin 669 -> 978 bytes .../ic_allday_collapse_large_holo_light.png | Bin 0 -> 1305 bytes .../ic_allday_collapse_small_holo_light.png | Bin 0 -> 795 bytes .../ic_allday_expand_large_holo_light.png | Bin 0 -> 1323 bytes .../ic_allday_expand_small_holo_light.png | Bin 0 -> 778 bytes .../ic_colorpicker_swatch_selected.png | Bin 0 -> 3241 bytes res/drawable-xhdpi/ic_colorpicker_swatch_stroke.png | Bin 0 -> 3502 bytes res/drawable-xhdpi/ic_contact_picture.png | Bin 7422 -> 1760 bytes res/drawable-xhdpi/ic_menu_add_event_holo_light.png | Bin 1032 -> 1229 bytes res/drawable-xhdpi/ic_menu_add_field_holo_light.png | Bin 1787 -> 2157 bytes res/drawable-xhdpi/ic_menu_cancel_holo_light.png | Bin 929 -> 1202 bytes res/drawable-xhdpi/ic_menu_colorpicker_pressed.png | Bin 0 -> 2143 bytes res/drawable-xhdpi/ic_menu_compose_holo_light.png | Bin 1817 -> 2322 bytes .../ic_menu_compose_pressed_holo_dark.png | Bin 0 -> 2311 bytes res/drawable-xhdpi/ic_menu_done_holo_light.png | Bin 1159 -> 1481 bytes res/drawable-xhdpi/ic_menu_refresh_holo_light.png | Bin 1820 -> 2246 bytes .../ic_menu_remove_field_holo_light.png | Bin 929 -> 1202 bytes res/drawable-xhdpi/ic_menu_search_holo_light.png | Bin 1639 -> 2062 bytes res/drawable-xhdpi/ic_menu_settings_holo_light.png | Bin 1638 -> 2058 bytes res/drawable-xhdpi/ic_menu_trash_holo_light.png | Bin 1279 -> 1541 bytes .../ic_menu_trash_pressed_holo_dark.png | Bin 0 -> 1594 bytes res/drawable-xhdpi/ic_recurrence_bubble_fill.png | Bin 2846 -> 2811 bytes res/drawable-xhdpi/ic_repeat_dark.png | Bin 1019 -> 1403 bytes res/drawable-xhdpi/ic_repeat_white.png | Bin 856 -> 1173 bytes .../list_multi_left_activated_holo.9.png | Bin 1938 -> 1903 bytes .../list_multi_left_focused_holo.9.png | Bin 400 -> 400 bytes .../list_multi_left_pressed_holo.9.png | Bin 292 -> 289 bytes .../minical_bg_shadow_holo_light.9.png | Bin 590 -> 601 bytes res/drawable-xhdpi/stat_notify_calendar.png | Bin 823 -> 994 bytes .../timeline_indicator_activated_holo_light.9.png | Bin 463 -> 470 bytes .../timeline_indicator_holo_light.9.png | Bin 440 -> 438 bytes res/drawable-xxhdpi/bg_event_cal_widget_holo.9.png | Bin 0 -> 1076 bytes res/drawable-xxhdpi/cal_widget_bg.9.png | Bin 0 -> 1099 bytes res/drawable-xxhdpi/cal_widget_date_bg.9.png | Bin 0 -> 1103 bytes res/drawable-xxhdpi/calendar_widget_preview.png | Bin 0 -> 40976 bytes ...lname_bottom_select_underselect_holo_light.9.png | Bin 0 -> 1815 bytes ...ttom_select_underselect_pressed_holo_light.9.png | Bin 0 -> 1820 bytes ...e_bottom_select_underunselected_holo_light.9.png | Bin 0 -> 2153 bytes ..._select_underunselected_pressed_holo_light.9.png | Bin 0 -> 2219 bytes .../calname_bottom_unselected_holo_light.9.png | Bin 0 -> 1265 bytes ...lname_bottom_unselected_pressed_holo_light.9.png | Bin 0 -> 1275 bytes ...e_bottom_unselected_underselect_holo_light.9.png | Bin 0 -> 1769 bytes ..._unselected_underselect_pressed_holo_light.9.png | Bin 0 -> 1803 bytes .../calname_select_underselect_holo_light.9.png | Bin 0 -> 1189 bytes ...name_select_underselect_pressed_holo_light.9.png | Bin 0 -> 1204 bytes .../calname_select_underunselected_holo_light.9.png | Bin 0 -> 1534 bytes ..._select_underunselected_pressed_holo_light.9.png | Bin 0 -> 1627 bytes .../calname_unselected_holo_light.9.png | Bin 0 -> 1180 bytes .../calname_unselected_pressed_holo_light.9.png | Bin 0 -> 1185 bytes .../calname_unselected_underselect_holo_light.9.png | Bin 0 -> 1689 bytes ..._unselected_underselect_pressed_holo_light.9.png | Bin 0 -> 1723 bytes res/drawable-xxhdpi/event_bg_declined.png | Bin 0 -> 1013 bytes .../header_bg_cal_widget_focused_holo.9.png | Bin 0 -> 1597 bytes .../header_bg_cal_widget_normal_holo.9.png | Bin 0 -> 1394 bytes .../header_bg_cal_widget_pressed_holo.9.png | Bin 0 -> 1425 bytes res/drawable-xxhdpi/ic_alarm_holo_dark.png | Bin 0 -> 3172 bytes .../ic_allday_collapse_large_holo_light.png | Bin 0 -> 1832 bytes .../ic_allday_collapse_small_holo_light.png | Bin 0 -> 1385 bytes .../ic_allday_expand_large_holo_light.png | Bin 0 -> 1857 bytes .../ic_allday_expand_small_holo_light.png | Bin 0 -> 1407 bytes res/drawable-xxhdpi/ic_call.png | Bin 0 -> 3859 bytes .../ic_colorpicker_swatch_selected.png | Bin 0 -> 3798 bytes .../ic_colorpicker_swatch_stroke.png | Bin 0 -> 6841 bytes res/drawable-xxhdpi/ic_contact_picture.png | Bin 0 -> 2776 bytes res/drawable-xxhdpi/ic_map.png | Bin 0 -> 1350 bytes .../ic_menu_add_event_holo_light.png | Bin 0 -> 1430 bytes .../ic_menu_add_field_holo_light.png | Bin 0 -> 2634 bytes res/drawable-xxhdpi/ic_menu_cancel_holo_light.png | Bin 0 -> 1497 bytes .../ic_menu_colorpicker_holo_dark.png | Bin 0 -> 2492 bytes .../ic_menu_colorpicker_holo_light.png | Bin 0 -> 2538 bytes res/drawable-xxhdpi/ic_menu_colorpicker_pressed.png | Bin 0 -> 2526 bytes res/drawable-xxhdpi/ic_menu_compose_holo_dark.png | Bin 0 -> 2627 bytes res/drawable-xxhdpi/ic_menu_compose_holo_light.png | Bin 0 -> 2781 bytes .../ic_menu_compose_pressed_holo_dark.png | Bin 0 -> 2809 bytes res/drawable-xxhdpi/ic_menu_done_holo_light.png | Bin 0 -> 1965 bytes res/drawable-xxhdpi/ic_menu_email_holo_dark.png | Bin 0 -> 1529 bytes res/drawable-xxhdpi/ic_menu_email_holo_light.png | Bin 0 -> 1640 bytes res/drawable-xxhdpi/ic_menu_refresh_holo_light.png | Bin 0 -> 2479 bytes .../ic_menu_remove_field_holo_light.png | Bin 0 -> 1497 bytes res/drawable-xxhdpi/ic_menu_search_holo_light.png | Bin 0 -> 2436 bytes res/drawable-xxhdpi/ic_menu_settings_holo_light.png | Bin 0 -> 2506 bytes res/drawable-xxhdpi/ic_menu_today_holo_light.png | Bin 0 -> 1272 bytes res/drawable-xxhdpi/ic_menu_trash_holo_dark.png | Bin 0 -> 1746 bytes res/drawable-xxhdpi/ic_menu_trash_holo_light.png | Bin 0 -> 1810 bytes .../ic_menu_trash_pressed_holo_dark.png | Bin 0 -> 1839 bytes .../ic_recurrence_bubble_disabled.png | Bin 0 -> 92944 bytes res/drawable-xxhdpi/ic_recurrence_bubble_fill.png | Bin 0 -> 5026 bytes .../ic_recurrence_bubble_outline.png | Bin 0 -> 92944 bytes .../ic_recurrence_bubble_outline_disabled.png | Bin 0 -> 92944 bytes res/drawable-xxhdpi/list_focused_holo.9.png | Bin 0 -> 1159 bytes .../list_multi_left_activated_holo.9.png | Bin 0 -> 3353 bytes .../list_multi_left_focused_holo.9.png | Bin 0 -> 1341 bytes .../list_multi_left_pressed_holo.9.png | Bin 0 -> 1269 bytes .../list_multi_left_primary_holo.9.png | Bin 0 -> 1224 bytes .../list_multi_left_secondary_holo.9.png | Bin 0 -> 1215 bytes res/drawable-xxhdpi/list_pressed_holo.9.png | Bin 0 -> 1141 bytes res/drawable-xxhdpi/list_primary_holo.9.png | Bin 0 -> 1137 bytes res/drawable-xxhdpi/list_secondary_holo.9.png | Bin 0 -> 1142 bytes .../minical_bg_shadow_holo_light.9.png | Bin 0 -> 1651 bytes res/drawable-xxhdpi/stat_notify_calendar.png | Bin 0 -> 575 bytes .../stat_notify_calendar_multiple.png | Bin 0 -> 1370 bytes .../timeline_indicator_activated_holo_light.9.png | Bin 0 -> 1547 bytes .../timeline_indicator_holo_light.9.png | Bin 0 -> 1477 bytes res/mipmap-hdpi/ic_launcher_calendar.png | Bin 7389 -> 7609 bytes res/mipmap-mdpi/ic_launcher_calendar.png | Bin 3804 -> 4167 bytes res/mipmap-xhdpi/ic_launcher_calendar.png | Bin 11060 -> 11578 bytes res/mipmap-xxhdpi/ic_launcher_calendar.png | Bin 21716 -> 20247 bytes 207 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 res/drawable-hdpi/event_bg_declined.png create mode 100644 res/drawable-hdpi/ic_allday_collapse_large_holo_light.png create mode 100644 res/drawable-hdpi/ic_allday_collapse_small_holo_light.png create mode 100644 res/drawable-hdpi/ic_allday_expand_large_holo_light.png create mode 100644 res/drawable-hdpi/ic_allday_expand_small_holo_light.png create mode 100644 res/drawable-hdpi/ic_colorpicker_swatch_selected.png create mode 100644 res/drawable-hdpi/ic_colorpicker_swatch_stroke.png create mode 100644 res/drawable-hdpi/ic_menu_colorpicker_pressed.png create mode 100644 res/drawable-hdpi/ic_menu_compose_pressed_holo_dark.png create mode 100644 res/drawable-hdpi/ic_menu_trash_pressed_holo_dark.png create mode 100644 res/drawable-mdpi/event_bg_declined.png create mode 100644 res/drawable-mdpi/ic_allday_collapse_large_holo_light.png create mode 100644 res/drawable-mdpi/ic_allday_collapse_small_holo_light.png create mode 100644 res/drawable-mdpi/ic_allday_expand_large_holo_light.png create mode 100644 res/drawable-mdpi/ic_allday_expand_small_holo_light.png create mode 100644 res/drawable-mdpi/ic_colorpicker_swatch_selected.png create mode 100644 res/drawable-mdpi/ic_colorpicker_swatch_stroke.png create mode 100644 res/drawable-mdpi/ic_menu_colorpicker_pressed.png create mode 100644 res/drawable-mdpi/ic_menu_compose_pressed_holo_dark.png create mode 100644 res/drawable-mdpi/ic_menu_trash_pressed_holo_dark.png create mode 100644 res/drawable-xhdpi/event_bg_declined.png create mode 100644 res/drawable-xhdpi/ic_allday_collapse_large_holo_light.png create mode 100644 res/drawable-xhdpi/ic_allday_collapse_small_holo_light.png create mode 100644 res/drawable-xhdpi/ic_allday_expand_large_holo_light.png create mode 100644 res/drawable-xhdpi/ic_allday_expand_small_holo_light.png create mode 100644 res/drawable-xhdpi/ic_colorpicker_swatch_selected.png create mode 100644 res/drawable-xhdpi/ic_colorpicker_swatch_stroke.png create mode 100644 res/drawable-xhdpi/ic_menu_colorpicker_pressed.png create mode 100644 res/drawable-xhdpi/ic_menu_compose_pressed_holo_dark.png create mode 100644 res/drawable-xhdpi/ic_menu_trash_pressed_holo_dark.png create mode 100644 res/drawable-xxhdpi/bg_event_cal_widget_holo.9.png create mode 100644 res/drawable-xxhdpi/cal_widget_bg.9.png create mode 100644 res/drawable-xxhdpi/cal_widget_date_bg.9.png create mode 100644 res/drawable-xxhdpi/calendar_widget_preview.png create mode 100644 res/drawable-xxhdpi/calname_bottom_select_underselect_holo_light.9.png create mode 100644 res/drawable-xxhdpi/calname_bottom_select_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-xxhdpi/calname_bottom_select_underunselected_holo_light.9.png create mode 100644 res/drawable-xxhdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png create mode 100644 res/drawable-xxhdpi/calname_bottom_unselected_holo_light.9.png create mode 100644 res/drawable-xxhdpi/calname_bottom_unselected_pressed_holo_light.9.png create mode 100644 res/drawable-xxhdpi/calname_bottom_unselected_underselect_holo_light.9.png create mode 100644 res/drawable-xxhdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-xxhdpi/calname_select_underselect_holo_light.9.png create mode 100644 res/drawable-xxhdpi/calname_select_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-xxhdpi/calname_select_underunselected_holo_light.9.png create mode 100644 res/drawable-xxhdpi/calname_select_underunselected_pressed_holo_light.9.png create mode 100644 res/drawable-xxhdpi/calname_unselected_holo_light.9.png create mode 100644 res/drawable-xxhdpi/calname_unselected_pressed_holo_light.9.png create mode 100644 res/drawable-xxhdpi/calname_unselected_underselect_holo_light.9.png create mode 100644 res/drawable-xxhdpi/calname_unselected_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-xxhdpi/event_bg_declined.png create mode 100644 res/drawable-xxhdpi/header_bg_cal_widget_focused_holo.9.png create mode 100644 res/drawable-xxhdpi/header_bg_cal_widget_normal_holo.9.png create mode 100644 res/drawable-xxhdpi/header_bg_cal_widget_pressed_holo.9.png create mode 100644 res/drawable-xxhdpi/ic_alarm_holo_dark.png create mode 100644 res/drawable-xxhdpi/ic_allday_collapse_large_holo_light.png create mode 100644 res/drawable-xxhdpi/ic_allday_collapse_small_holo_light.png create mode 100644 res/drawable-xxhdpi/ic_allday_expand_large_holo_light.png create mode 100644 res/drawable-xxhdpi/ic_allday_expand_small_holo_light.png create mode 100644 res/drawable-xxhdpi/ic_call.png create mode 100644 res/drawable-xxhdpi/ic_colorpicker_swatch_selected.png create mode 100644 res/drawable-xxhdpi/ic_colorpicker_swatch_stroke.png create mode 100644 res/drawable-xxhdpi/ic_contact_picture.png create mode 100644 res/drawable-xxhdpi/ic_map.png create mode 100644 res/drawable-xxhdpi/ic_menu_add_event_holo_light.png create mode 100644 res/drawable-xxhdpi/ic_menu_add_field_holo_light.png create mode 100644 res/drawable-xxhdpi/ic_menu_cancel_holo_light.png create mode 100644 res/drawable-xxhdpi/ic_menu_colorpicker_holo_dark.png create mode 100644 res/drawable-xxhdpi/ic_menu_colorpicker_holo_light.png create mode 100644 res/drawable-xxhdpi/ic_menu_colorpicker_pressed.png create mode 100644 res/drawable-xxhdpi/ic_menu_compose_holo_dark.png create mode 100644 res/drawable-xxhdpi/ic_menu_compose_holo_light.png create mode 100644 res/drawable-xxhdpi/ic_menu_compose_pressed_holo_dark.png create mode 100644 res/drawable-xxhdpi/ic_menu_done_holo_light.png create mode 100644 res/drawable-xxhdpi/ic_menu_email_holo_dark.png create mode 100644 res/drawable-xxhdpi/ic_menu_email_holo_light.png create mode 100644 res/drawable-xxhdpi/ic_menu_refresh_holo_light.png create mode 100644 res/drawable-xxhdpi/ic_menu_remove_field_holo_light.png create mode 100644 res/drawable-xxhdpi/ic_menu_search_holo_light.png create mode 100644 res/drawable-xxhdpi/ic_menu_settings_holo_light.png create mode 100644 res/drawable-xxhdpi/ic_menu_today_holo_light.png create mode 100644 res/drawable-xxhdpi/ic_menu_trash_holo_dark.png create mode 100644 res/drawable-xxhdpi/ic_menu_trash_holo_light.png create mode 100644 res/drawable-xxhdpi/ic_menu_trash_pressed_holo_dark.png create mode 100644 res/drawable-xxhdpi/ic_recurrence_bubble_disabled.png create mode 100644 res/drawable-xxhdpi/ic_recurrence_bubble_fill.png create mode 100644 res/drawable-xxhdpi/ic_recurrence_bubble_outline.png create mode 100644 res/drawable-xxhdpi/ic_recurrence_bubble_outline_disabled.png create mode 100644 res/drawable-xxhdpi/list_focused_holo.9.png create mode 100644 res/drawable-xxhdpi/list_multi_left_activated_holo.9.png create mode 100644 res/drawable-xxhdpi/list_multi_left_focused_holo.9.png create mode 100644 res/drawable-xxhdpi/list_multi_left_pressed_holo.9.png create mode 100644 res/drawable-xxhdpi/list_multi_left_primary_holo.9.png create mode 100644 res/drawable-xxhdpi/list_multi_left_secondary_holo.9.png create mode 100644 res/drawable-xxhdpi/list_pressed_holo.9.png create mode 100644 res/drawable-xxhdpi/list_primary_holo.9.png create mode 100644 res/drawable-xxhdpi/list_secondary_holo.9.png create mode 100644 res/drawable-xxhdpi/minical_bg_shadow_holo_light.9.png create mode 100755 res/drawable-xxhdpi/stat_notify_calendar.png create mode 100644 res/drawable-xxhdpi/stat_notify_calendar_multiple.png create mode 100644 res/drawable-xxhdpi/timeline_indicator_activated_holo_light.9.png create mode 100644 res/drawable-xxhdpi/timeline_indicator_holo_light.9.png diff --git a/res/drawable-hdpi/cal_widget_bg.9.png b/res/drawable-hdpi/cal_widget_bg.9.png index 5984d8a4..18f4fd4c 100644 Binary files a/res/drawable-hdpi/cal_widget_bg.9.png and b/res/drawable-hdpi/cal_widget_bg.9.png differ diff --git a/res/drawable-hdpi/calendar_widget_preview.png b/res/drawable-hdpi/calendar_widget_preview.png index d11f28f6..3356aee1 100644 Binary files a/res/drawable-hdpi/calendar_widget_preview.png and b/res/drawable-hdpi/calendar_widget_preview.png differ diff --git a/res/drawable-hdpi/calname_bottom_select_underselect_holo_light.9.png b/res/drawable-hdpi/calname_bottom_select_underselect_holo_light.9.png index b6a525d2..5af77a8d 100644 Binary files a/res/drawable-hdpi/calname_bottom_select_underselect_holo_light.9.png and b/res/drawable-hdpi/calname_bottom_select_underselect_holo_light.9.png differ diff --git a/res/drawable-hdpi/calname_bottom_select_underselect_pressed_holo_light.9.png b/res/drawable-hdpi/calname_bottom_select_underselect_pressed_holo_light.9.png index 317f04e3..9c6ed6e8 100644 Binary files a/res/drawable-hdpi/calname_bottom_select_underselect_pressed_holo_light.9.png and b/res/drawable-hdpi/calname_bottom_select_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-hdpi/calname_bottom_select_underunselected_holo_light.9.png b/res/drawable-hdpi/calname_bottom_select_underunselected_holo_light.9.png index 8703e98f..1b4d080e 100644 Binary files a/res/drawable-hdpi/calname_bottom_select_underunselected_holo_light.9.png and b/res/drawable-hdpi/calname_bottom_select_underunselected_holo_light.9.png differ diff --git a/res/drawable-hdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png b/res/drawable-hdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png index 68f7adeb..8c02ac29 100644 Binary files a/res/drawable-hdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png and b/res/drawable-hdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png differ diff --git a/res/drawable-hdpi/calname_bottom_unselected_underselect_holo_light.9.png b/res/drawable-hdpi/calname_bottom_unselected_underselect_holo_light.9.png index 7e5e37ef..6d184afd 100644 Binary files a/res/drawable-hdpi/calname_bottom_unselected_underselect_holo_light.9.png and b/res/drawable-hdpi/calname_bottom_unselected_underselect_holo_light.9.png differ diff --git a/res/drawable-hdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png b/res/drawable-hdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png index bf5361b4..b06c3afd 100644 Binary files a/res/drawable-hdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png and b/res/drawable-hdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-hdpi/calname_select_underunselected_holo_light.9.png b/res/drawable-hdpi/calname_select_underunselected_holo_light.9.png index f5dc38bc..73516795 100644 Binary files a/res/drawable-hdpi/calname_select_underunselected_holo_light.9.png and b/res/drawable-hdpi/calname_select_underunselected_holo_light.9.png differ diff --git a/res/drawable-hdpi/calname_select_underunselected_pressed_holo_light.9.png b/res/drawable-hdpi/calname_select_underunselected_pressed_holo_light.9.png index c4f26e9d..8ac7912a 100644 Binary files a/res/drawable-hdpi/calname_select_underunselected_pressed_holo_light.9.png and b/res/drawable-hdpi/calname_select_underunselected_pressed_holo_light.9.png differ diff --git a/res/drawable-hdpi/calname_unselected_underselect_holo_light.9.png b/res/drawable-hdpi/calname_unselected_underselect_holo_light.9.png index c9ebb9ab..58f76bde 100644 Binary files a/res/drawable-hdpi/calname_unselected_underselect_holo_light.9.png and b/res/drawable-hdpi/calname_unselected_underselect_holo_light.9.png differ diff --git a/res/drawable-hdpi/calname_unselected_underselect_pressed_holo_light.9.png b/res/drawable-hdpi/calname_unselected_underselect_pressed_holo_light.9.png index a400d669..5f031919 100644 Binary files a/res/drawable-hdpi/calname_unselected_underselect_pressed_holo_light.9.png and b/res/drawable-hdpi/calname_unselected_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-hdpi/event_bg_declined.png b/res/drawable-hdpi/event_bg_declined.png new file mode 100644 index 00000000..da07254c Binary files /dev/null and b/res/drawable-hdpi/event_bg_declined.png differ diff --git a/res/drawable-hdpi/header_bg_cal_widget_focused_holo.9.png b/res/drawable-hdpi/header_bg_cal_widget_focused_holo.9.png index 4bbe9555..aa8ce83e 100644 Binary files a/res/drawable-hdpi/header_bg_cal_widget_focused_holo.9.png and b/res/drawable-hdpi/header_bg_cal_widget_focused_holo.9.png differ diff --git a/res/drawable-hdpi/header_bg_cal_widget_normal_holo.9.png b/res/drawable-hdpi/header_bg_cal_widget_normal_holo.9.png index 7eda88f6..af40423c 100644 Binary files a/res/drawable-hdpi/header_bg_cal_widget_normal_holo.9.png and b/res/drawable-hdpi/header_bg_cal_widget_normal_holo.9.png differ diff --git a/res/drawable-hdpi/header_bg_cal_widget_pressed_holo.9.png b/res/drawable-hdpi/header_bg_cal_widget_pressed_holo.9.png index a42d2d17..811ca47f 100644 Binary files a/res/drawable-hdpi/header_bg_cal_widget_pressed_holo.9.png and b/res/drawable-hdpi/header_bg_cal_widget_pressed_holo.9.png differ diff --git a/res/drawable-hdpi/ic_allday_collapse_large_holo_light.png b/res/drawable-hdpi/ic_allday_collapse_large_holo_light.png new file mode 100644 index 00000000..9874144e Binary files /dev/null and b/res/drawable-hdpi/ic_allday_collapse_large_holo_light.png differ diff --git a/res/drawable-hdpi/ic_allday_collapse_small_holo_light.png b/res/drawable-hdpi/ic_allday_collapse_small_holo_light.png new file mode 100644 index 00000000..719d3856 Binary files /dev/null and b/res/drawable-hdpi/ic_allday_collapse_small_holo_light.png differ diff --git a/res/drawable-hdpi/ic_allday_expand_large_holo_light.png b/res/drawable-hdpi/ic_allday_expand_large_holo_light.png new file mode 100644 index 00000000..00cdf899 Binary files /dev/null and b/res/drawable-hdpi/ic_allday_expand_large_holo_light.png differ diff --git a/res/drawable-hdpi/ic_allday_expand_small_holo_light.png b/res/drawable-hdpi/ic_allday_expand_small_holo_light.png new file mode 100644 index 00000000..e12e6451 Binary files /dev/null and b/res/drawable-hdpi/ic_allday_expand_small_holo_light.png differ diff --git a/res/drawable-hdpi/ic_colorpicker_swatch_selected.png b/res/drawable-hdpi/ic_colorpicker_swatch_selected.png new file mode 100644 index 00000000..135c7e1b Binary files /dev/null and b/res/drawable-hdpi/ic_colorpicker_swatch_selected.png differ diff --git a/res/drawable-hdpi/ic_colorpicker_swatch_stroke.png b/res/drawable-hdpi/ic_colorpicker_swatch_stroke.png new file mode 100644 index 00000000..4d9465a3 Binary files /dev/null and b/res/drawable-hdpi/ic_colorpicker_swatch_stroke.png differ diff --git a/res/drawable-hdpi/ic_contact_picture.png b/res/drawable-hdpi/ic_contact_picture.png index 2eef7b53..b44a9f6f 100644 Binary files a/res/drawable-hdpi/ic_contact_picture.png and b/res/drawable-hdpi/ic_contact_picture.png differ diff --git a/res/drawable-hdpi/ic_menu_add_event_holo_light.png b/res/drawable-hdpi/ic_menu_add_event_holo_light.png index 6f3906d5..e084a986 100644 Binary files a/res/drawable-hdpi/ic_menu_add_event_holo_light.png and b/res/drawable-hdpi/ic_menu_add_event_holo_light.png differ diff --git a/res/drawable-hdpi/ic_menu_add_field_holo_light.png b/res/drawable-hdpi/ic_menu_add_field_holo_light.png index 4a4990c0..98fa6c60 100644 Binary files a/res/drawable-hdpi/ic_menu_add_field_holo_light.png and b/res/drawable-hdpi/ic_menu_add_field_holo_light.png differ diff --git a/res/drawable-hdpi/ic_menu_cancel_holo_light.png b/res/drawable-hdpi/ic_menu_cancel_holo_light.png index 33691c02..45c846b4 100644 Binary files a/res/drawable-hdpi/ic_menu_cancel_holo_light.png and b/res/drawable-hdpi/ic_menu_cancel_holo_light.png differ diff --git a/res/drawable-hdpi/ic_menu_colorpicker_pressed.png b/res/drawable-hdpi/ic_menu_colorpicker_pressed.png new file mode 100644 index 00000000..cc3b2c3d Binary files /dev/null and b/res/drawable-hdpi/ic_menu_colorpicker_pressed.png differ diff --git a/res/drawable-hdpi/ic_menu_compose_holo_light.png b/res/drawable-hdpi/ic_menu_compose_holo_light.png index 20d9a282..49cdde4c 100644 Binary files a/res/drawable-hdpi/ic_menu_compose_holo_light.png and b/res/drawable-hdpi/ic_menu_compose_holo_light.png differ diff --git a/res/drawable-hdpi/ic_menu_compose_pressed_holo_dark.png b/res/drawable-hdpi/ic_menu_compose_pressed_holo_dark.png new file mode 100644 index 00000000..919cd4ef Binary files /dev/null and b/res/drawable-hdpi/ic_menu_compose_pressed_holo_dark.png differ diff --git a/res/drawable-hdpi/ic_menu_done_holo_light.png b/res/drawable-hdpi/ic_menu_done_holo_light.png index 2c6719b7..6b508adb 100644 Binary files a/res/drawable-hdpi/ic_menu_done_holo_light.png and b/res/drawable-hdpi/ic_menu_done_holo_light.png differ diff --git a/res/drawable-hdpi/ic_menu_refresh_holo_light.png b/res/drawable-hdpi/ic_menu_refresh_holo_light.png index cf2a9f5a..3eb19665 100644 Binary files a/res/drawable-hdpi/ic_menu_refresh_holo_light.png and b/res/drawable-hdpi/ic_menu_refresh_holo_light.png differ diff --git a/res/drawable-hdpi/ic_menu_remove_field_holo_light.png b/res/drawable-hdpi/ic_menu_remove_field_holo_light.png index b31359f7..45c846b4 100644 Binary files a/res/drawable-hdpi/ic_menu_remove_field_holo_light.png and b/res/drawable-hdpi/ic_menu_remove_field_holo_light.png differ diff --git a/res/drawable-hdpi/ic_menu_search_holo_light.png b/res/drawable-hdpi/ic_menu_search_holo_light.png index 2872bca3..28a5134f 100644 Binary files a/res/drawable-hdpi/ic_menu_search_holo_light.png and b/res/drawable-hdpi/ic_menu_search_holo_light.png differ diff --git a/res/drawable-hdpi/ic_menu_settings_holo_light.png b/res/drawable-hdpi/ic_menu_settings_holo_light.png index 5a6bd4bc..74e2b966 100644 Binary files a/res/drawable-hdpi/ic_menu_settings_holo_light.png and b/res/drawable-hdpi/ic_menu_settings_holo_light.png differ diff --git a/res/drawable-hdpi/ic_menu_trash_holo_light.png b/res/drawable-hdpi/ic_menu_trash_holo_light.png index c62295aa..f276cbf2 100644 Binary files a/res/drawable-hdpi/ic_menu_trash_holo_light.png and b/res/drawable-hdpi/ic_menu_trash_holo_light.png differ diff --git a/res/drawable-hdpi/ic_menu_trash_pressed_holo_dark.png b/res/drawable-hdpi/ic_menu_trash_pressed_holo_dark.png new file mode 100644 index 00000000..aae9a0a3 Binary files /dev/null and b/res/drawable-hdpi/ic_menu_trash_pressed_holo_dark.png differ diff --git a/res/drawable-hdpi/ic_recurrence_bubble_fill.png b/res/drawable-hdpi/ic_recurrence_bubble_fill.png index 417ac752..96b5dd56 100644 Binary files a/res/drawable-hdpi/ic_recurrence_bubble_fill.png and b/res/drawable-hdpi/ic_recurrence_bubble_fill.png differ diff --git a/res/drawable-hdpi/list_multi_left_activated_holo.9.png b/res/drawable-hdpi/list_multi_left_activated_holo.9.png index f19f5365..a8ad8c98 100644 Binary files a/res/drawable-hdpi/list_multi_left_activated_holo.9.png and b/res/drawable-hdpi/list_multi_left_activated_holo.9.png differ diff --git a/res/drawable-hdpi/list_multi_left_focused_holo.9.png b/res/drawable-hdpi/list_multi_left_focused_holo.9.png index d69c7b07..92dce1aa 100644 Binary files a/res/drawable-hdpi/list_multi_left_focused_holo.9.png and b/res/drawable-hdpi/list_multi_left_focused_holo.9.png differ diff --git a/res/drawable-hdpi/list_multi_left_pressed_holo.9.png b/res/drawable-hdpi/list_multi_left_pressed_holo.9.png index 6edbbd1a..f70e794d 100644 Binary files a/res/drawable-hdpi/list_multi_left_pressed_holo.9.png and b/res/drawable-hdpi/list_multi_left_pressed_holo.9.png differ diff --git a/res/drawable-hdpi/minical_bg_shadow_holo_light.9.png b/res/drawable-hdpi/minical_bg_shadow_holo_light.9.png index fc1de235..c0be8fd0 100644 Binary files a/res/drawable-hdpi/minical_bg_shadow_holo_light.9.png and b/res/drawable-hdpi/minical_bg_shadow_holo_light.9.png differ diff --git a/res/drawable-hdpi/stat_notify_calendar.png b/res/drawable-hdpi/stat_notify_calendar.png index 05b68b13..3110dd3c 100644 Binary files a/res/drawable-hdpi/stat_notify_calendar.png and b/res/drawable-hdpi/stat_notify_calendar.png differ diff --git a/res/drawable-hdpi/timeline_indicator_activated_holo_light.9.png b/res/drawable-hdpi/timeline_indicator_activated_holo_light.9.png index 011d86eb..62e4238b 100644 Binary files a/res/drawable-hdpi/timeline_indicator_activated_holo_light.9.png and b/res/drawable-hdpi/timeline_indicator_activated_holo_light.9.png differ diff --git a/res/drawable-hdpi/timeline_indicator_holo_light.9.png b/res/drawable-hdpi/timeline_indicator_holo_light.9.png index 011fcae5..446be9ca 100644 Binary files a/res/drawable-hdpi/timeline_indicator_holo_light.9.png and b/res/drawable-hdpi/timeline_indicator_holo_light.9.png differ diff --git a/res/drawable-mdpi/cal_widget_bg.9.png b/res/drawable-mdpi/cal_widget_bg.9.png index 4472642b..f3a5621d 100644 Binary files a/res/drawable-mdpi/cal_widget_bg.9.png and b/res/drawable-mdpi/cal_widget_bg.9.png differ diff --git a/res/drawable-mdpi/calendar_widget_preview.png b/res/drawable-mdpi/calendar_widget_preview.png index 121d78ba..515b842a 100644 Binary files a/res/drawable-mdpi/calendar_widget_preview.png and b/res/drawable-mdpi/calendar_widget_preview.png differ diff --git a/res/drawable-mdpi/calname_bottom_select_underunselected_holo_light.9.png b/res/drawable-mdpi/calname_bottom_select_underunselected_holo_light.9.png index 4f41dc92..a080fa95 100644 Binary files a/res/drawable-mdpi/calname_bottom_select_underunselected_holo_light.9.png and b/res/drawable-mdpi/calname_bottom_select_underunselected_holo_light.9.png differ diff --git a/res/drawable-mdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png b/res/drawable-mdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png index 4adff6de..4aaccdd5 100644 Binary files a/res/drawable-mdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png and b/res/drawable-mdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png differ diff --git a/res/drawable-mdpi/calname_bottom_unselected_underselect_holo_light.9.png b/res/drawable-mdpi/calname_bottom_unselected_underselect_holo_light.9.png index 613a11dd..3827afb0 100644 Binary files a/res/drawable-mdpi/calname_bottom_unselected_underselect_holo_light.9.png and b/res/drawable-mdpi/calname_bottom_unselected_underselect_holo_light.9.png differ diff --git a/res/drawable-mdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png b/res/drawable-mdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png index 0d1f9d72..7f8fcd29 100644 Binary files a/res/drawable-mdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png and b/res/drawable-mdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-mdpi/calname_select_underunselected_holo_light.9.png b/res/drawable-mdpi/calname_select_underunselected_holo_light.9.png index b1c937c9..81842054 100644 Binary files a/res/drawable-mdpi/calname_select_underunselected_holo_light.9.png and b/res/drawable-mdpi/calname_select_underunselected_holo_light.9.png differ diff --git a/res/drawable-mdpi/calname_select_underunselected_pressed_holo_light.9.png b/res/drawable-mdpi/calname_select_underunselected_pressed_holo_light.9.png index 198d37c9..bd3988e2 100644 Binary files a/res/drawable-mdpi/calname_select_underunselected_pressed_holo_light.9.png and b/res/drawable-mdpi/calname_select_underunselected_pressed_holo_light.9.png differ diff --git a/res/drawable-mdpi/calname_unselected_underselect_holo_light.9.png b/res/drawable-mdpi/calname_unselected_underselect_holo_light.9.png index f10fd831..bf4e0f2d 100644 Binary files a/res/drawable-mdpi/calname_unselected_underselect_holo_light.9.png and b/res/drawable-mdpi/calname_unselected_underselect_holo_light.9.png differ diff --git a/res/drawable-mdpi/calname_unselected_underselect_pressed_holo_light.9.png b/res/drawable-mdpi/calname_unselected_underselect_pressed_holo_light.9.png index 854ba48f..332382d8 100644 Binary files a/res/drawable-mdpi/calname_unselected_underselect_pressed_holo_light.9.png and b/res/drawable-mdpi/calname_unselected_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-mdpi/event_bg_declined.png b/res/drawable-mdpi/event_bg_declined.png new file mode 100644 index 00000000..78ef0d44 Binary files /dev/null and b/res/drawable-mdpi/event_bg_declined.png differ diff --git a/res/drawable-mdpi/header_bg_cal_widget_focused_holo.9.png b/res/drawable-mdpi/header_bg_cal_widget_focused_holo.9.png index 3ddea3ce..d7e4f800 100644 Binary files a/res/drawable-mdpi/header_bg_cal_widget_focused_holo.9.png and b/res/drawable-mdpi/header_bg_cal_widget_focused_holo.9.png differ diff --git a/res/drawable-mdpi/header_bg_cal_widget_normal_holo.9.png b/res/drawable-mdpi/header_bg_cal_widget_normal_holo.9.png index 05224612..f9e3adcb 100644 Binary files a/res/drawable-mdpi/header_bg_cal_widget_normal_holo.9.png and b/res/drawable-mdpi/header_bg_cal_widget_normal_holo.9.png differ diff --git a/res/drawable-mdpi/header_bg_cal_widget_pressed_holo.9.png b/res/drawable-mdpi/header_bg_cal_widget_pressed_holo.9.png index 294b9d95..9de7b1d3 100644 Binary files a/res/drawable-mdpi/header_bg_cal_widget_pressed_holo.9.png and b/res/drawable-mdpi/header_bg_cal_widget_pressed_holo.9.png differ diff --git a/res/drawable-mdpi/ic_allday_collapse_large_holo_light.png b/res/drawable-mdpi/ic_allday_collapse_large_holo_light.png new file mode 100644 index 00000000..12f4bf37 Binary files /dev/null and b/res/drawable-mdpi/ic_allday_collapse_large_holo_light.png differ diff --git a/res/drawable-mdpi/ic_allday_collapse_small_holo_light.png b/res/drawable-mdpi/ic_allday_collapse_small_holo_light.png new file mode 100644 index 00000000..3e1c5a88 Binary files /dev/null and b/res/drawable-mdpi/ic_allday_collapse_small_holo_light.png differ diff --git a/res/drawable-mdpi/ic_allday_expand_large_holo_light.png b/res/drawable-mdpi/ic_allday_expand_large_holo_light.png new file mode 100644 index 00000000..e908d293 Binary files /dev/null and b/res/drawable-mdpi/ic_allday_expand_large_holo_light.png differ diff --git a/res/drawable-mdpi/ic_allday_expand_small_holo_light.png b/res/drawable-mdpi/ic_allday_expand_small_holo_light.png new file mode 100644 index 00000000..e708ea8f Binary files /dev/null and b/res/drawable-mdpi/ic_allday_expand_small_holo_light.png differ diff --git a/res/drawable-mdpi/ic_colorpicker_swatch_selected.png b/res/drawable-mdpi/ic_colorpicker_swatch_selected.png new file mode 100644 index 00000000..0d84ac37 Binary files /dev/null and b/res/drawable-mdpi/ic_colorpicker_swatch_selected.png differ diff --git a/res/drawable-mdpi/ic_colorpicker_swatch_stroke.png b/res/drawable-mdpi/ic_colorpicker_swatch_stroke.png new file mode 100644 index 00000000..3164ddc5 Binary files /dev/null and b/res/drawable-mdpi/ic_colorpicker_swatch_stroke.png differ diff --git a/res/drawable-mdpi/ic_contact_picture.png b/res/drawable-mdpi/ic_contact_picture.png index 6c7cb61d..368923aa 100644 Binary files a/res/drawable-mdpi/ic_contact_picture.png and b/res/drawable-mdpi/ic_contact_picture.png differ diff --git a/res/drawable-mdpi/ic_menu_add_event_holo_light.png b/res/drawable-mdpi/ic_menu_add_event_holo_light.png index 2265cc72..289a7450 100644 Binary files a/res/drawable-mdpi/ic_menu_add_event_holo_light.png and b/res/drawable-mdpi/ic_menu_add_event_holo_light.png differ diff --git a/res/drawable-mdpi/ic_menu_add_field_holo_light.png b/res/drawable-mdpi/ic_menu_add_field_holo_light.png index d8bcee98..d215ec9e 100644 Binary files a/res/drawable-mdpi/ic_menu_add_field_holo_light.png and b/res/drawable-mdpi/ic_menu_add_field_holo_light.png differ diff --git a/res/drawable-mdpi/ic_menu_cancel_holo_light.png b/res/drawable-mdpi/ic_menu_cancel_holo_light.png index ea0be8da..df6c5e09 100644 Binary files a/res/drawable-mdpi/ic_menu_cancel_holo_light.png and b/res/drawable-mdpi/ic_menu_cancel_holo_light.png differ diff --git a/res/drawable-mdpi/ic_menu_colorpicker_pressed.png b/res/drawable-mdpi/ic_menu_colorpicker_pressed.png new file mode 100644 index 00000000..86f717f1 Binary files /dev/null and b/res/drawable-mdpi/ic_menu_colorpicker_pressed.png differ diff --git a/res/drawable-mdpi/ic_menu_compose_holo_light.png b/res/drawable-mdpi/ic_menu_compose_holo_light.png index 3d2c9042..5207c252 100644 Binary files a/res/drawable-mdpi/ic_menu_compose_holo_light.png and b/res/drawable-mdpi/ic_menu_compose_holo_light.png differ diff --git a/res/drawable-mdpi/ic_menu_compose_pressed_holo_dark.png b/res/drawable-mdpi/ic_menu_compose_pressed_holo_dark.png new file mode 100644 index 00000000..2ad62375 Binary files /dev/null and b/res/drawable-mdpi/ic_menu_compose_pressed_holo_dark.png differ diff --git a/res/drawable-mdpi/ic_menu_done_holo_light.png b/res/drawable-mdpi/ic_menu_done_holo_light.png index 744e9644..20b39db7 100644 Binary files a/res/drawable-mdpi/ic_menu_done_holo_light.png and b/res/drawable-mdpi/ic_menu_done_holo_light.png differ diff --git a/res/drawable-mdpi/ic_menu_refresh_holo_light.png b/res/drawable-mdpi/ic_menu_refresh_holo_light.png index 68587307..1ed2d9b6 100644 Binary files a/res/drawable-mdpi/ic_menu_refresh_holo_light.png and b/res/drawable-mdpi/ic_menu_refresh_holo_light.png differ diff --git a/res/drawable-mdpi/ic_menu_remove_field_holo_light.png b/res/drawable-mdpi/ic_menu_remove_field_holo_light.png index 6bffc1e1..df6c5e09 100644 Binary files a/res/drawable-mdpi/ic_menu_remove_field_holo_light.png and b/res/drawable-mdpi/ic_menu_remove_field_holo_light.png differ diff --git a/res/drawable-mdpi/ic_menu_search_holo_light.png b/res/drawable-mdpi/ic_menu_search_holo_light.png index 832ef5dc..65028459 100644 Binary files a/res/drawable-mdpi/ic_menu_search_holo_light.png and b/res/drawable-mdpi/ic_menu_search_holo_light.png differ diff --git a/res/drawable-mdpi/ic_menu_settings_holo_light.png b/res/drawable-mdpi/ic_menu_settings_holo_light.png index fd0dcc1e..c69352cb 100644 Binary files a/res/drawable-mdpi/ic_menu_settings_holo_light.png and b/res/drawable-mdpi/ic_menu_settings_holo_light.png differ diff --git a/res/drawable-mdpi/ic_menu_trash_holo_light.png b/res/drawable-mdpi/ic_menu_trash_holo_light.png index 08291855..c7b318cd 100644 Binary files a/res/drawable-mdpi/ic_menu_trash_holo_light.png and b/res/drawable-mdpi/ic_menu_trash_holo_light.png differ diff --git a/res/drawable-mdpi/ic_menu_trash_pressed_holo_dark.png b/res/drawable-mdpi/ic_menu_trash_pressed_holo_dark.png new file mode 100644 index 00000000..d606b966 Binary files /dev/null and b/res/drawable-mdpi/ic_menu_trash_pressed_holo_dark.png differ diff --git a/res/drawable-mdpi/ic_recurrence_bubble_fill.png b/res/drawable-mdpi/ic_recurrence_bubble_fill.png index 874914ec..a93b17c1 100644 Binary files a/res/drawable-mdpi/ic_recurrence_bubble_fill.png and b/res/drawable-mdpi/ic_recurrence_bubble_fill.png differ diff --git a/res/drawable-mdpi/list_multi_left_activated_holo.9.png b/res/drawable-mdpi/list_multi_left_activated_holo.9.png index 5a42c4a4..05f29282 100644 Binary files a/res/drawable-mdpi/list_multi_left_activated_holo.9.png and b/res/drawable-mdpi/list_multi_left_activated_holo.9.png differ diff --git a/res/drawable-mdpi/stat_notify_calendar.png b/res/drawable-mdpi/stat_notify_calendar.png index 2834c8f7..679485ea 100644 Binary files a/res/drawable-mdpi/stat_notify_calendar.png and b/res/drawable-mdpi/stat_notify_calendar.png differ diff --git a/res/drawable-mdpi/timeline_indicator_activated_holo_light.9.png b/res/drawable-mdpi/timeline_indicator_activated_holo_light.9.png index 0436a67c..100be028 100644 Binary files a/res/drawable-mdpi/timeline_indicator_activated_holo_light.9.png and b/res/drawable-mdpi/timeline_indicator_activated_holo_light.9.png differ diff --git a/res/drawable-mdpi/timeline_indicator_holo_light.9.png b/res/drawable-mdpi/timeline_indicator_holo_light.9.png index 0ed18974..23b3616e 100644 Binary files a/res/drawable-mdpi/timeline_indicator_holo_light.9.png and b/res/drawable-mdpi/timeline_indicator_holo_light.9.png differ diff --git a/res/drawable-xhdpi/cal_widget_bg.9.png b/res/drawable-xhdpi/cal_widget_bg.9.png index f8607b19..46f19fd7 100644 Binary files a/res/drawable-xhdpi/cal_widget_bg.9.png and b/res/drawable-xhdpi/cal_widget_bg.9.png differ diff --git a/res/drawable-xhdpi/calendar_widget_preview.png b/res/drawable-xhdpi/calendar_widget_preview.png index 7618b309..df249710 100644 Binary files a/res/drawable-xhdpi/calendar_widget_preview.png and b/res/drawable-xhdpi/calendar_widget_preview.png differ diff --git a/res/drawable-xhdpi/calname_bottom_select_underselect_holo_light.9.png b/res/drawable-xhdpi/calname_bottom_select_underselect_holo_light.9.png index f6c09dee..b595a49c 100644 Binary files a/res/drawable-xhdpi/calname_bottom_select_underselect_holo_light.9.png and b/res/drawable-xhdpi/calname_bottom_select_underselect_holo_light.9.png differ diff --git a/res/drawable-xhdpi/calname_bottom_select_underselect_pressed_holo_light.9.png b/res/drawable-xhdpi/calname_bottom_select_underselect_pressed_holo_light.9.png index d08fa7cc..fa50b842 100644 Binary files a/res/drawable-xhdpi/calname_bottom_select_underselect_pressed_holo_light.9.png and b/res/drawable-xhdpi/calname_bottom_select_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-xhdpi/calname_bottom_select_underunselected_holo_light.9.png b/res/drawable-xhdpi/calname_bottom_select_underunselected_holo_light.9.png index 56860ee0..5fb2e467 100644 Binary files a/res/drawable-xhdpi/calname_bottom_select_underunselected_holo_light.9.png and b/res/drawable-xhdpi/calname_bottom_select_underunselected_holo_light.9.png differ diff --git a/res/drawable-xhdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png b/res/drawable-xhdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png index ad5c4e0b..d9af4b90 100644 Binary files a/res/drawable-xhdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png and b/res/drawable-xhdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png differ diff --git a/res/drawable-xhdpi/calname_bottom_unselected_underselect_holo_light.9.png b/res/drawable-xhdpi/calname_bottom_unselected_underselect_holo_light.9.png index a34ac18c..baa91d08 100644 Binary files a/res/drawable-xhdpi/calname_bottom_unselected_underselect_holo_light.9.png and b/res/drawable-xhdpi/calname_bottom_unselected_underselect_holo_light.9.png differ diff --git a/res/drawable-xhdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png b/res/drawable-xhdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png index 67b43dde..55233741 100644 Binary files a/res/drawable-xhdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png and b/res/drawable-xhdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-xhdpi/calname_select_underunselected_holo_light.9.png b/res/drawable-xhdpi/calname_select_underunselected_holo_light.9.png index e2b93fe1..f72aea43 100644 Binary files a/res/drawable-xhdpi/calname_select_underunselected_holo_light.9.png and b/res/drawable-xhdpi/calname_select_underunselected_holo_light.9.png differ diff --git a/res/drawable-xhdpi/calname_select_underunselected_pressed_holo_light.9.png b/res/drawable-xhdpi/calname_select_underunselected_pressed_holo_light.9.png index 7d69b417..48241fbd 100644 Binary files a/res/drawable-xhdpi/calname_select_underunselected_pressed_holo_light.9.png and b/res/drawable-xhdpi/calname_select_underunselected_pressed_holo_light.9.png differ diff --git a/res/drawable-xhdpi/calname_unselected_underselect_holo_light.9.png b/res/drawable-xhdpi/calname_unselected_underselect_holo_light.9.png index 3d529fbb..6adf3ddd 100644 Binary files a/res/drawable-xhdpi/calname_unselected_underselect_holo_light.9.png and b/res/drawable-xhdpi/calname_unselected_underselect_holo_light.9.png differ diff --git a/res/drawable-xhdpi/calname_unselected_underselect_pressed_holo_light.9.png b/res/drawable-xhdpi/calname_unselected_underselect_pressed_holo_light.9.png index a0da557b..f2d008e8 100644 Binary files a/res/drawable-xhdpi/calname_unselected_underselect_pressed_holo_light.9.png and b/res/drawable-xhdpi/calname_unselected_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-xhdpi/event_bg_declined.png b/res/drawable-xhdpi/event_bg_declined.png new file mode 100644 index 00000000..bcad7920 Binary files /dev/null and b/res/drawable-xhdpi/event_bg_declined.png differ diff --git a/res/drawable-xhdpi/header_bg_cal_widget_focused_holo.9.png b/res/drawable-xhdpi/header_bg_cal_widget_focused_holo.9.png index 7461ee37..02ef9dae 100644 Binary files a/res/drawable-xhdpi/header_bg_cal_widget_focused_holo.9.png and b/res/drawable-xhdpi/header_bg_cal_widget_focused_holo.9.png differ diff --git a/res/drawable-xhdpi/header_bg_cal_widget_normal_holo.9.png b/res/drawable-xhdpi/header_bg_cal_widget_normal_holo.9.png index f70f092a..a7d5e086 100644 Binary files a/res/drawable-xhdpi/header_bg_cal_widget_normal_holo.9.png and b/res/drawable-xhdpi/header_bg_cal_widget_normal_holo.9.png differ diff --git a/res/drawable-xhdpi/header_bg_cal_widget_pressed_holo.9.png b/res/drawable-xhdpi/header_bg_cal_widget_pressed_holo.9.png index 8e3003a9..8b8772c3 100644 Binary files a/res/drawable-xhdpi/header_bg_cal_widget_pressed_holo.9.png and b/res/drawable-xhdpi/header_bg_cal_widget_pressed_holo.9.png differ diff --git a/res/drawable-xhdpi/ic_alarm_dark.png b/res/drawable-xhdpi/ic_alarm_dark.png index a3d32a9c..b722d57e 100644 Binary files a/res/drawable-xhdpi/ic_alarm_dark.png and b/res/drawable-xhdpi/ic_alarm_dark.png differ diff --git a/res/drawable-xhdpi/ic_alarm_white.png b/res/drawable-xhdpi/ic_alarm_white.png index 0b42da95..1e443ad8 100644 Binary files a/res/drawable-xhdpi/ic_alarm_white.png and b/res/drawable-xhdpi/ic_alarm_white.png differ diff --git a/res/drawable-xhdpi/ic_allday_collapse_large_holo_light.png b/res/drawable-xhdpi/ic_allday_collapse_large_holo_light.png new file mode 100644 index 00000000..ffc9432b Binary files /dev/null and b/res/drawable-xhdpi/ic_allday_collapse_large_holo_light.png differ diff --git a/res/drawable-xhdpi/ic_allday_collapse_small_holo_light.png b/res/drawable-xhdpi/ic_allday_collapse_small_holo_light.png new file mode 100644 index 00000000..9253845a Binary files /dev/null and b/res/drawable-xhdpi/ic_allday_collapse_small_holo_light.png differ diff --git a/res/drawable-xhdpi/ic_allday_expand_large_holo_light.png b/res/drawable-xhdpi/ic_allday_expand_large_holo_light.png new file mode 100644 index 00000000..c9634ba7 Binary files /dev/null and b/res/drawable-xhdpi/ic_allday_expand_large_holo_light.png differ diff --git a/res/drawable-xhdpi/ic_allday_expand_small_holo_light.png b/res/drawable-xhdpi/ic_allday_expand_small_holo_light.png new file mode 100644 index 00000000..d8317c5a Binary files /dev/null and b/res/drawable-xhdpi/ic_allday_expand_small_holo_light.png differ diff --git a/res/drawable-xhdpi/ic_colorpicker_swatch_selected.png b/res/drawable-xhdpi/ic_colorpicker_swatch_selected.png new file mode 100644 index 00000000..a29487c5 Binary files /dev/null and b/res/drawable-xhdpi/ic_colorpicker_swatch_selected.png differ diff --git a/res/drawable-xhdpi/ic_colorpicker_swatch_stroke.png b/res/drawable-xhdpi/ic_colorpicker_swatch_stroke.png new file mode 100644 index 00000000..786290b1 Binary files /dev/null and b/res/drawable-xhdpi/ic_colorpicker_swatch_stroke.png differ diff --git a/res/drawable-xhdpi/ic_contact_picture.png b/res/drawable-xhdpi/ic_contact_picture.png index 1a2bfde3..25e3ad58 100644 Binary files a/res/drawable-xhdpi/ic_contact_picture.png and b/res/drawable-xhdpi/ic_contact_picture.png differ diff --git a/res/drawable-xhdpi/ic_menu_add_event_holo_light.png b/res/drawable-xhdpi/ic_menu_add_event_holo_light.png index 8523b01c..5bd6ead0 100644 Binary files a/res/drawable-xhdpi/ic_menu_add_event_holo_light.png and b/res/drawable-xhdpi/ic_menu_add_event_holo_light.png differ diff --git a/res/drawable-xhdpi/ic_menu_add_field_holo_light.png b/res/drawable-xhdpi/ic_menu_add_field_holo_light.png index d7902e30..a689161a 100644 Binary files a/res/drawable-xhdpi/ic_menu_add_field_holo_light.png and b/res/drawable-xhdpi/ic_menu_add_field_holo_light.png differ diff --git a/res/drawable-xhdpi/ic_menu_cancel_holo_light.png b/res/drawable-xhdpi/ic_menu_cancel_holo_light.png index 864e2cf0..ca08b33e 100644 Binary files a/res/drawable-xhdpi/ic_menu_cancel_holo_light.png and b/res/drawable-xhdpi/ic_menu_cancel_holo_light.png differ diff --git a/res/drawable-xhdpi/ic_menu_colorpicker_pressed.png b/res/drawable-xhdpi/ic_menu_colorpicker_pressed.png new file mode 100644 index 00000000..b263fcb7 Binary files /dev/null and b/res/drawable-xhdpi/ic_menu_colorpicker_pressed.png differ diff --git a/res/drawable-xhdpi/ic_menu_compose_holo_light.png b/res/drawable-xhdpi/ic_menu_compose_holo_light.png index a1569bc9..7379ebde 100644 Binary files a/res/drawable-xhdpi/ic_menu_compose_holo_light.png and b/res/drawable-xhdpi/ic_menu_compose_holo_light.png differ diff --git a/res/drawable-xhdpi/ic_menu_compose_pressed_holo_dark.png b/res/drawable-xhdpi/ic_menu_compose_pressed_holo_dark.png new file mode 100644 index 00000000..ab211c15 Binary files /dev/null and b/res/drawable-xhdpi/ic_menu_compose_pressed_holo_dark.png differ diff --git a/res/drawable-xhdpi/ic_menu_done_holo_light.png b/res/drawable-xhdpi/ic_menu_done_holo_light.png index 1607f358..5a7be8f4 100644 Binary files a/res/drawable-xhdpi/ic_menu_done_holo_light.png and b/res/drawable-xhdpi/ic_menu_done_holo_light.png differ diff --git a/res/drawable-xhdpi/ic_menu_refresh_holo_light.png b/res/drawable-xhdpi/ic_menu_refresh_holo_light.png index 7395918c..b571b4c3 100644 Binary files a/res/drawable-xhdpi/ic_menu_refresh_holo_light.png and b/res/drawable-xhdpi/ic_menu_refresh_holo_light.png differ diff --git a/res/drawable-xhdpi/ic_menu_remove_field_holo_light.png b/res/drawable-xhdpi/ic_menu_remove_field_holo_light.png index f9b0ffb2..ca08b33e 100644 Binary files a/res/drawable-xhdpi/ic_menu_remove_field_holo_light.png and b/res/drawable-xhdpi/ic_menu_remove_field_holo_light.png differ diff --git a/res/drawable-xhdpi/ic_menu_search_holo_light.png b/res/drawable-xhdpi/ic_menu_search_holo_light.png index e53906fc..c67b35de 100644 Binary files a/res/drawable-xhdpi/ic_menu_search_holo_light.png and b/res/drawable-xhdpi/ic_menu_search_holo_light.png differ diff --git a/res/drawable-xhdpi/ic_menu_settings_holo_light.png b/res/drawable-xhdpi/ic_menu_settings_holo_light.png index 9d5e315f..38b9ecee 100644 Binary files a/res/drawable-xhdpi/ic_menu_settings_holo_light.png and b/res/drawable-xhdpi/ic_menu_settings_holo_light.png differ diff --git a/res/drawable-xhdpi/ic_menu_trash_holo_light.png b/res/drawable-xhdpi/ic_menu_trash_holo_light.png index bd3fd784..6ce99d24 100644 Binary files a/res/drawable-xhdpi/ic_menu_trash_holo_light.png and b/res/drawable-xhdpi/ic_menu_trash_holo_light.png differ diff --git a/res/drawable-xhdpi/ic_menu_trash_pressed_holo_dark.png b/res/drawable-xhdpi/ic_menu_trash_pressed_holo_dark.png new file mode 100644 index 00000000..aa3e643e Binary files /dev/null and b/res/drawable-xhdpi/ic_menu_trash_pressed_holo_dark.png differ diff --git a/res/drawable-xhdpi/ic_recurrence_bubble_fill.png b/res/drawable-xhdpi/ic_recurrence_bubble_fill.png index 686eb5c1..85d18cc4 100644 Binary files a/res/drawable-xhdpi/ic_recurrence_bubble_fill.png and b/res/drawable-xhdpi/ic_recurrence_bubble_fill.png differ diff --git a/res/drawable-xhdpi/ic_repeat_dark.png b/res/drawable-xhdpi/ic_repeat_dark.png index 9ce94e4e..70335b90 100644 Binary files a/res/drawable-xhdpi/ic_repeat_dark.png and b/res/drawable-xhdpi/ic_repeat_dark.png differ diff --git a/res/drawable-xhdpi/ic_repeat_white.png b/res/drawable-xhdpi/ic_repeat_white.png index bb5f3c25..809f07cd 100644 Binary files a/res/drawable-xhdpi/ic_repeat_white.png and b/res/drawable-xhdpi/ic_repeat_white.png differ diff --git a/res/drawable-xhdpi/list_multi_left_activated_holo.9.png b/res/drawable-xhdpi/list_multi_left_activated_holo.9.png index 43f493ec..3225770e 100644 Binary files a/res/drawable-xhdpi/list_multi_left_activated_holo.9.png and b/res/drawable-xhdpi/list_multi_left_activated_holo.9.png differ diff --git a/res/drawable-xhdpi/list_multi_left_focused_holo.9.png b/res/drawable-xhdpi/list_multi_left_focused_holo.9.png index 84a3ea5f..0d327d29 100644 Binary files a/res/drawable-xhdpi/list_multi_left_focused_holo.9.png and b/res/drawable-xhdpi/list_multi_left_focused_holo.9.png differ diff --git a/res/drawable-xhdpi/list_multi_left_pressed_holo.9.png b/res/drawable-xhdpi/list_multi_left_pressed_holo.9.png index 316b85f4..4efaf2a8 100644 Binary files a/res/drawable-xhdpi/list_multi_left_pressed_holo.9.png and b/res/drawable-xhdpi/list_multi_left_pressed_holo.9.png differ diff --git a/res/drawable-xhdpi/minical_bg_shadow_holo_light.9.png b/res/drawable-xhdpi/minical_bg_shadow_holo_light.9.png index 3e963d5d..003724bf 100644 Binary files a/res/drawable-xhdpi/minical_bg_shadow_holo_light.9.png and b/res/drawable-xhdpi/minical_bg_shadow_holo_light.9.png differ diff --git a/res/drawable-xhdpi/stat_notify_calendar.png b/res/drawable-xhdpi/stat_notify_calendar.png index 5ae7782d..902cd484 100644 Binary files a/res/drawable-xhdpi/stat_notify_calendar.png and b/res/drawable-xhdpi/stat_notify_calendar.png differ diff --git a/res/drawable-xhdpi/timeline_indicator_activated_holo_light.9.png b/res/drawable-xhdpi/timeline_indicator_activated_holo_light.9.png index 121864e9..a514007b 100644 Binary files a/res/drawable-xhdpi/timeline_indicator_activated_holo_light.9.png and b/res/drawable-xhdpi/timeline_indicator_activated_holo_light.9.png differ diff --git a/res/drawable-xhdpi/timeline_indicator_holo_light.9.png b/res/drawable-xhdpi/timeline_indicator_holo_light.9.png index 12979c5f..dd98fda7 100644 Binary files a/res/drawable-xhdpi/timeline_indicator_holo_light.9.png and b/res/drawable-xhdpi/timeline_indicator_holo_light.9.png differ diff --git a/res/drawable-xxhdpi/bg_event_cal_widget_holo.9.png b/res/drawable-xxhdpi/bg_event_cal_widget_holo.9.png new file mode 100644 index 00000000..762d445d Binary files /dev/null and b/res/drawable-xxhdpi/bg_event_cal_widget_holo.9.png differ diff --git a/res/drawable-xxhdpi/cal_widget_bg.9.png b/res/drawable-xxhdpi/cal_widget_bg.9.png new file mode 100644 index 00000000..52ab1a35 Binary files /dev/null and b/res/drawable-xxhdpi/cal_widget_bg.9.png differ diff --git a/res/drawable-xxhdpi/cal_widget_date_bg.9.png b/res/drawable-xxhdpi/cal_widget_date_bg.9.png new file mode 100644 index 00000000..76dae148 Binary files /dev/null and b/res/drawable-xxhdpi/cal_widget_date_bg.9.png differ diff --git a/res/drawable-xxhdpi/calendar_widget_preview.png b/res/drawable-xxhdpi/calendar_widget_preview.png new file mode 100644 index 00000000..8f59f063 Binary files /dev/null and b/res/drawable-xxhdpi/calendar_widget_preview.png differ diff --git a/res/drawable-xxhdpi/calname_bottom_select_underselect_holo_light.9.png b/res/drawable-xxhdpi/calname_bottom_select_underselect_holo_light.9.png new file mode 100644 index 00000000..fb46e4ca Binary files /dev/null and b/res/drawable-xxhdpi/calname_bottom_select_underselect_holo_light.9.png differ diff --git a/res/drawable-xxhdpi/calname_bottom_select_underselect_pressed_holo_light.9.png b/res/drawable-xxhdpi/calname_bottom_select_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..f68d7165 Binary files /dev/null and b/res/drawable-xxhdpi/calname_bottom_select_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-xxhdpi/calname_bottom_select_underunselected_holo_light.9.png b/res/drawable-xxhdpi/calname_bottom_select_underunselected_holo_light.9.png new file mode 100644 index 00000000..d9cc5881 Binary files /dev/null and b/res/drawable-xxhdpi/calname_bottom_select_underunselected_holo_light.9.png differ diff --git a/res/drawable-xxhdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png b/res/drawable-xxhdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png new file mode 100644 index 00000000..ab7409c6 Binary files /dev/null and b/res/drawable-xxhdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png differ diff --git a/res/drawable-xxhdpi/calname_bottom_unselected_holo_light.9.png b/res/drawable-xxhdpi/calname_bottom_unselected_holo_light.9.png new file mode 100644 index 00000000..e5da3af3 Binary files /dev/null and b/res/drawable-xxhdpi/calname_bottom_unselected_holo_light.9.png differ diff --git a/res/drawable-xxhdpi/calname_bottom_unselected_pressed_holo_light.9.png b/res/drawable-xxhdpi/calname_bottom_unselected_pressed_holo_light.9.png new file mode 100644 index 00000000..870653f0 Binary files /dev/null and b/res/drawable-xxhdpi/calname_bottom_unselected_pressed_holo_light.9.png differ diff --git a/res/drawable-xxhdpi/calname_bottom_unselected_underselect_holo_light.9.png b/res/drawable-xxhdpi/calname_bottom_unselected_underselect_holo_light.9.png new file mode 100644 index 00000000..eadd4f34 Binary files /dev/null and b/res/drawable-xxhdpi/calname_bottom_unselected_underselect_holo_light.9.png differ diff --git a/res/drawable-xxhdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png b/res/drawable-xxhdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..bfd19ede Binary files /dev/null and b/res/drawable-xxhdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-xxhdpi/calname_select_underselect_holo_light.9.png b/res/drawable-xxhdpi/calname_select_underselect_holo_light.9.png new file mode 100644 index 00000000..fca67f44 Binary files /dev/null and b/res/drawable-xxhdpi/calname_select_underselect_holo_light.9.png differ diff --git a/res/drawable-xxhdpi/calname_select_underselect_pressed_holo_light.9.png b/res/drawable-xxhdpi/calname_select_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..c8f06bb4 Binary files /dev/null and b/res/drawable-xxhdpi/calname_select_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-xxhdpi/calname_select_underunselected_holo_light.9.png b/res/drawable-xxhdpi/calname_select_underunselected_holo_light.9.png new file mode 100644 index 00000000..af6c97f1 Binary files /dev/null and b/res/drawable-xxhdpi/calname_select_underunselected_holo_light.9.png differ diff --git a/res/drawable-xxhdpi/calname_select_underunselected_pressed_holo_light.9.png b/res/drawable-xxhdpi/calname_select_underunselected_pressed_holo_light.9.png new file mode 100644 index 00000000..189ad4b2 Binary files /dev/null and b/res/drawable-xxhdpi/calname_select_underunselected_pressed_holo_light.9.png differ diff --git a/res/drawable-xxhdpi/calname_unselected_holo_light.9.png b/res/drawable-xxhdpi/calname_unselected_holo_light.9.png new file mode 100644 index 00000000..f66fc21a Binary files /dev/null and b/res/drawable-xxhdpi/calname_unselected_holo_light.9.png differ diff --git a/res/drawable-xxhdpi/calname_unselected_pressed_holo_light.9.png b/res/drawable-xxhdpi/calname_unselected_pressed_holo_light.9.png new file mode 100644 index 00000000..2b5869b1 Binary files /dev/null and b/res/drawable-xxhdpi/calname_unselected_pressed_holo_light.9.png differ diff --git a/res/drawable-xxhdpi/calname_unselected_underselect_holo_light.9.png b/res/drawable-xxhdpi/calname_unselected_underselect_holo_light.9.png new file mode 100644 index 00000000..85dd81d6 Binary files /dev/null and b/res/drawable-xxhdpi/calname_unselected_underselect_holo_light.9.png differ diff --git a/res/drawable-xxhdpi/calname_unselected_underselect_pressed_holo_light.9.png b/res/drawable-xxhdpi/calname_unselected_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..4c459459 Binary files /dev/null and b/res/drawable-xxhdpi/calname_unselected_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-xxhdpi/event_bg_declined.png b/res/drawable-xxhdpi/event_bg_declined.png new file mode 100644 index 00000000..a67892d3 Binary files /dev/null and b/res/drawable-xxhdpi/event_bg_declined.png differ diff --git a/res/drawable-xxhdpi/header_bg_cal_widget_focused_holo.9.png b/res/drawable-xxhdpi/header_bg_cal_widget_focused_holo.9.png new file mode 100644 index 00000000..0e6cd3b3 Binary files /dev/null and b/res/drawable-xxhdpi/header_bg_cal_widget_focused_holo.9.png differ diff --git a/res/drawable-xxhdpi/header_bg_cal_widget_normal_holo.9.png b/res/drawable-xxhdpi/header_bg_cal_widget_normal_holo.9.png new file mode 100644 index 00000000..3438f2a0 Binary files /dev/null and b/res/drawable-xxhdpi/header_bg_cal_widget_normal_holo.9.png differ diff --git a/res/drawable-xxhdpi/header_bg_cal_widget_pressed_holo.9.png b/res/drawable-xxhdpi/header_bg_cal_widget_pressed_holo.9.png new file mode 100644 index 00000000..0ebad9d2 Binary files /dev/null and b/res/drawable-xxhdpi/header_bg_cal_widget_pressed_holo.9.png differ diff --git a/res/drawable-xxhdpi/ic_alarm_holo_dark.png b/res/drawable-xxhdpi/ic_alarm_holo_dark.png new file mode 100644 index 00000000..05377a38 Binary files /dev/null and b/res/drawable-xxhdpi/ic_alarm_holo_dark.png differ diff --git a/res/drawable-xxhdpi/ic_allday_collapse_large_holo_light.png b/res/drawable-xxhdpi/ic_allday_collapse_large_holo_light.png new file mode 100644 index 00000000..a1e51d9b Binary files /dev/null and b/res/drawable-xxhdpi/ic_allday_collapse_large_holo_light.png differ diff --git a/res/drawable-xxhdpi/ic_allday_collapse_small_holo_light.png b/res/drawable-xxhdpi/ic_allday_collapse_small_holo_light.png new file mode 100644 index 00000000..6299a5a1 Binary files /dev/null and b/res/drawable-xxhdpi/ic_allday_collapse_small_holo_light.png differ diff --git a/res/drawable-xxhdpi/ic_allday_expand_large_holo_light.png b/res/drawable-xxhdpi/ic_allday_expand_large_holo_light.png new file mode 100644 index 00000000..3576ed1e Binary files /dev/null and b/res/drawable-xxhdpi/ic_allday_expand_large_holo_light.png differ diff --git a/res/drawable-xxhdpi/ic_allday_expand_small_holo_light.png b/res/drawable-xxhdpi/ic_allday_expand_small_holo_light.png new file mode 100644 index 00000000..2176dc80 Binary files /dev/null and b/res/drawable-xxhdpi/ic_allday_expand_small_holo_light.png differ diff --git a/res/drawable-xxhdpi/ic_call.png b/res/drawable-xxhdpi/ic_call.png new file mode 100644 index 00000000..800f6255 Binary files /dev/null and b/res/drawable-xxhdpi/ic_call.png differ diff --git a/res/drawable-xxhdpi/ic_colorpicker_swatch_selected.png b/res/drawable-xxhdpi/ic_colorpicker_swatch_selected.png new file mode 100644 index 00000000..bfb9aa01 Binary files /dev/null and b/res/drawable-xxhdpi/ic_colorpicker_swatch_selected.png differ diff --git a/res/drawable-xxhdpi/ic_colorpicker_swatch_stroke.png b/res/drawable-xxhdpi/ic_colorpicker_swatch_stroke.png new file mode 100644 index 00000000..8b4e89f5 Binary files /dev/null and b/res/drawable-xxhdpi/ic_colorpicker_swatch_stroke.png differ diff --git a/res/drawable-xxhdpi/ic_contact_picture.png b/res/drawable-xxhdpi/ic_contact_picture.png new file mode 100644 index 00000000..1607543a Binary files /dev/null and b/res/drawable-xxhdpi/ic_contact_picture.png differ diff --git a/res/drawable-xxhdpi/ic_map.png b/res/drawable-xxhdpi/ic_map.png new file mode 100644 index 00000000..ec0182a9 Binary files /dev/null and b/res/drawable-xxhdpi/ic_map.png differ diff --git a/res/drawable-xxhdpi/ic_menu_add_event_holo_light.png b/res/drawable-xxhdpi/ic_menu_add_event_holo_light.png new file mode 100644 index 00000000..75dd2cd5 Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_add_event_holo_light.png differ diff --git a/res/drawable-xxhdpi/ic_menu_add_field_holo_light.png b/res/drawable-xxhdpi/ic_menu_add_field_holo_light.png new file mode 100644 index 00000000..9baf195b Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_add_field_holo_light.png differ diff --git a/res/drawable-xxhdpi/ic_menu_cancel_holo_light.png b/res/drawable-xxhdpi/ic_menu_cancel_holo_light.png new file mode 100644 index 00000000..953438d5 Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_cancel_holo_light.png differ diff --git a/res/drawable-xxhdpi/ic_menu_colorpicker_holo_dark.png b/res/drawable-xxhdpi/ic_menu_colorpicker_holo_dark.png new file mode 100644 index 00000000..4ff4d433 Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_colorpicker_holo_dark.png differ diff --git a/res/drawable-xxhdpi/ic_menu_colorpicker_holo_light.png b/res/drawable-xxhdpi/ic_menu_colorpicker_holo_light.png new file mode 100644 index 00000000..25b48596 Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_colorpicker_holo_light.png differ diff --git a/res/drawable-xxhdpi/ic_menu_colorpicker_pressed.png b/res/drawable-xxhdpi/ic_menu_colorpicker_pressed.png new file mode 100644 index 00000000..9148300e Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_colorpicker_pressed.png differ diff --git a/res/drawable-xxhdpi/ic_menu_compose_holo_dark.png b/res/drawable-xxhdpi/ic_menu_compose_holo_dark.png new file mode 100644 index 00000000..b71a0516 Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_compose_holo_dark.png differ diff --git a/res/drawable-xxhdpi/ic_menu_compose_holo_light.png b/res/drawable-xxhdpi/ic_menu_compose_holo_light.png new file mode 100644 index 00000000..71bcdbff Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_compose_holo_light.png differ diff --git a/res/drawable-xxhdpi/ic_menu_compose_pressed_holo_dark.png b/res/drawable-xxhdpi/ic_menu_compose_pressed_holo_dark.png new file mode 100644 index 00000000..7f841468 Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_compose_pressed_holo_dark.png differ diff --git a/res/drawable-xxhdpi/ic_menu_done_holo_light.png b/res/drawable-xxhdpi/ic_menu_done_holo_light.png new file mode 100644 index 00000000..1a4ea285 Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_done_holo_light.png differ diff --git a/res/drawable-xxhdpi/ic_menu_email_holo_dark.png b/res/drawable-xxhdpi/ic_menu_email_holo_dark.png new file mode 100644 index 00000000..162cf2d3 Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_email_holo_dark.png differ diff --git a/res/drawable-xxhdpi/ic_menu_email_holo_light.png b/res/drawable-xxhdpi/ic_menu_email_holo_light.png new file mode 100644 index 00000000..f5812a37 Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_email_holo_light.png differ diff --git a/res/drawable-xxhdpi/ic_menu_refresh_holo_light.png b/res/drawable-xxhdpi/ic_menu_refresh_holo_light.png new file mode 100644 index 00000000..03ff04cb Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_refresh_holo_light.png differ diff --git a/res/drawable-xxhdpi/ic_menu_remove_field_holo_light.png b/res/drawable-xxhdpi/ic_menu_remove_field_holo_light.png new file mode 100644 index 00000000..953438d5 Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_remove_field_holo_light.png differ diff --git a/res/drawable-xxhdpi/ic_menu_search_holo_light.png b/res/drawable-xxhdpi/ic_menu_search_holo_light.png new file mode 100644 index 00000000..46a1357b Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_search_holo_light.png differ diff --git a/res/drawable-xxhdpi/ic_menu_settings_holo_light.png b/res/drawable-xxhdpi/ic_menu_settings_holo_light.png new file mode 100644 index 00000000..4ee31c7a Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_settings_holo_light.png differ diff --git a/res/drawable-xxhdpi/ic_menu_today_holo_light.png b/res/drawable-xxhdpi/ic_menu_today_holo_light.png new file mode 100644 index 00000000..51a4cfc2 Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_today_holo_light.png differ diff --git a/res/drawable-xxhdpi/ic_menu_trash_holo_dark.png b/res/drawable-xxhdpi/ic_menu_trash_holo_dark.png new file mode 100644 index 00000000..025c2dcc Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_trash_holo_dark.png differ diff --git a/res/drawable-xxhdpi/ic_menu_trash_holo_light.png b/res/drawable-xxhdpi/ic_menu_trash_holo_light.png new file mode 100644 index 00000000..1811be8d Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_trash_holo_light.png differ diff --git a/res/drawable-xxhdpi/ic_menu_trash_pressed_holo_dark.png b/res/drawable-xxhdpi/ic_menu_trash_pressed_holo_dark.png new file mode 100644 index 00000000..cb275ffb Binary files /dev/null and b/res/drawable-xxhdpi/ic_menu_trash_pressed_holo_dark.png differ diff --git a/res/drawable-xxhdpi/ic_recurrence_bubble_disabled.png b/res/drawable-xxhdpi/ic_recurrence_bubble_disabled.png new file mode 100644 index 00000000..deeec009 Binary files /dev/null and b/res/drawable-xxhdpi/ic_recurrence_bubble_disabled.png differ diff --git a/res/drawable-xxhdpi/ic_recurrence_bubble_fill.png b/res/drawable-xxhdpi/ic_recurrence_bubble_fill.png new file mode 100644 index 00000000..3a26d858 Binary files /dev/null and b/res/drawable-xxhdpi/ic_recurrence_bubble_fill.png differ diff --git a/res/drawable-xxhdpi/ic_recurrence_bubble_outline.png b/res/drawable-xxhdpi/ic_recurrence_bubble_outline.png new file mode 100644 index 00000000..390c2766 Binary files /dev/null and b/res/drawable-xxhdpi/ic_recurrence_bubble_outline.png differ diff --git a/res/drawable-xxhdpi/ic_recurrence_bubble_outline_disabled.png b/res/drawable-xxhdpi/ic_recurrence_bubble_outline_disabled.png new file mode 100644 index 00000000..fd87a8b4 Binary files /dev/null and b/res/drawable-xxhdpi/ic_recurrence_bubble_outline_disabled.png differ diff --git a/res/drawable-xxhdpi/list_focused_holo.9.png b/res/drawable-xxhdpi/list_focused_holo.9.png new file mode 100644 index 00000000..57d36ecd Binary files /dev/null and b/res/drawable-xxhdpi/list_focused_holo.9.png differ diff --git a/res/drawable-xxhdpi/list_multi_left_activated_holo.9.png b/res/drawable-xxhdpi/list_multi_left_activated_holo.9.png new file mode 100644 index 00000000..41996002 Binary files /dev/null and b/res/drawable-xxhdpi/list_multi_left_activated_holo.9.png differ diff --git a/res/drawable-xxhdpi/list_multi_left_focused_holo.9.png b/res/drawable-xxhdpi/list_multi_left_focused_holo.9.png new file mode 100644 index 00000000..17175db6 Binary files /dev/null and b/res/drawable-xxhdpi/list_multi_left_focused_holo.9.png differ diff --git a/res/drawable-xxhdpi/list_multi_left_pressed_holo.9.png b/res/drawable-xxhdpi/list_multi_left_pressed_holo.9.png new file mode 100644 index 00000000..699dfa0f Binary files /dev/null and b/res/drawable-xxhdpi/list_multi_left_pressed_holo.9.png differ diff --git a/res/drawable-xxhdpi/list_multi_left_primary_holo.9.png b/res/drawable-xxhdpi/list_multi_left_primary_holo.9.png new file mode 100644 index 00000000..2993fb1e Binary files /dev/null and b/res/drawable-xxhdpi/list_multi_left_primary_holo.9.png differ diff --git a/res/drawable-xxhdpi/list_multi_left_secondary_holo.9.png b/res/drawable-xxhdpi/list_multi_left_secondary_holo.9.png new file mode 100644 index 00000000..35dbb3aa Binary files /dev/null and b/res/drawable-xxhdpi/list_multi_left_secondary_holo.9.png differ diff --git a/res/drawable-xxhdpi/list_pressed_holo.9.png b/res/drawable-xxhdpi/list_pressed_holo.9.png new file mode 100644 index 00000000..fd70ed90 Binary files /dev/null and b/res/drawable-xxhdpi/list_pressed_holo.9.png differ diff --git a/res/drawable-xxhdpi/list_primary_holo.9.png b/res/drawable-xxhdpi/list_primary_holo.9.png new file mode 100644 index 00000000..0e5a2df3 Binary files /dev/null and b/res/drawable-xxhdpi/list_primary_holo.9.png differ diff --git a/res/drawable-xxhdpi/list_secondary_holo.9.png b/res/drawable-xxhdpi/list_secondary_holo.9.png new file mode 100644 index 00000000..e3821ece Binary files /dev/null and b/res/drawable-xxhdpi/list_secondary_holo.9.png differ diff --git a/res/drawable-xxhdpi/minical_bg_shadow_holo_light.9.png b/res/drawable-xxhdpi/minical_bg_shadow_holo_light.9.png new file mode 100644 index 00000000..c8eef198 Binary files /dev/null and b/res/drawable-xxhdpi/minical_bg_shadow_holo_light.9.png differ diff --git a/res/drawable-xxhdpi/stat_notify_calendar.png b/res/drawable-xxhdpi/stat_notify_calendar.png new file mode 100755 index 00000000..01edf403 Binary files /dev/null and b/res/drawable-xxhdpi/stat_notify_calendar.png differ diff --git a/res/drawable-xxhdpi/stat_notify_calendar_multiple.png b/res/drawable-xxhdpi/stat_notify_calendar_multiple.png new file mode 100644 index 00000000..ae243ec8 Binary files /dev/null and b/res/drawable-xxhdpi/stat_notify_calendar_multiple.png differ diff --git a/res/drawable-xxhdpi/timeline_indicator_activated_holo_light.9.png b/res/drawable-xxhdpi/timeline_indicator_activated_holo_light.9.png new file mode 100644 index 00000000..94d863d3 Binary files /dev/null and b/res/drawable-xxhdpi/timeline_indicator_activated_holo_light.9.png differ diff --git a/res/drawable-xxhdpi/timeline_indicator_holo_light.9.png b/res/drawable-xxhdpi/timeline_indicator_holo_light.9.png new file mode 100644 index 00000000..0de743e6 Binary files /dev/null and b/res/drawable-xxhdpi/timeline_indicator_holo_light.9.png differ diff --git a/res/mipmap-hdpi/ic_launcher_calendar.png b/res/mipmap-hdpi/ic_launcher_calendar.png index f59de5bb..0564717b 100644 Binary files a/res/mipmap-hdpi/ic_launcher_calendar.png and b/res/mipmap-hdpi/ic_launcher_calendar.png differ diff --git a/res/mipmap-mdpi/ic_launcher_calendar.png b/res/mipmap-mdpi/ic_launcher_calendar.png index 74bb9e8d..0f403474 100644 Binary files a/res/mipmap-mdpi/ic_launcher_calendar.png and b/res/mipmap-mdpi/ic_launcher_calendar.png differ diff --git a/res/mipmap-xhdpi/ic_launcher_calendar.png b/res/mipmap-xhdpi/ic_launcher_calendar.png index cce18783..d7705cfb 100644 Binary files a/res/mipmap-xhdpi/ic_launcher_calendar.png and b/res/mipmap-xhdpi/ic_launcher_calendar.png differ diff --git a/res/mipmap-xxhdpi/ic_launcher_calendar.png b/res/mipmap-xxhdpi/ic_launcher_calendar.png index a102fbc3..f07299fd 100644 Binary files a/res/mipmap-xxhdpi/ic_launcher_calendar.png and b/res/mipmap-xxhdpi/ic_launcher_calendar.png differ -- cgit v1.2.3 From 92dab547871133c4ab078ecbfaa052dae2805aae Mon Sep 17 00:00:00 2001 From: Paul Westbrook Date: Thu, 12 Sep 2013 22:40:26 -0700 Subject: Fix AOSP Calendar build Change-Id: I292e701b4006eb49319e544e9c29a7533614e8c5 (cherry picked from commit e8f61ecd04fef5be0af129e401b7060bf3e83f72) --- Android.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Android.mk b/Android.mk index 2393a883..4a8b1584 100644 --- a/Android.mk +++ b/Android.mk @@ -31,7 +31,7 @@ LOCAL_STATIC_JAVA_LIBRARIES := \ android-support-v4 \ calendar-common -LOCAL_SDK_VERSION := 17 +LOCAL_SDK_VERSION := current LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(res_dirs)) -- cgit v1.2.3 From b5a786d589f3dc09503ea8cfdccdff5bb165213d Mon Sep 17 00:00:00 2001 From: Sam Blitzstein Date: Tue, 24 Sep 2013 16:43:52 -0700 Subject: Adding additional assets. Fix widget background and recurrence bubble selection color. Bug: 10807055 Bug: 10826412 Change-Id: I4a854719b43c2a9d604b90c9ccc7062a7da8fb46 --- res/drawable-hdpi/cal_widget_bg.9.png | Bin 176 -> 165 bytes res/drawable-hdpi/ic_recurrence_bubble_fill.png | Bin 1892 -> 1893 bytes res/drawable-mdpi/cal_widget_bg.9.png | Bin 166 -> 153 bytes res/drawable-mdpi/ic_recurrence_bubble_fill.png | Bin 1300 -> 1301 bytes res/drawable-xhdpi/cal_widget_bg.9.png | Bin 196 -> 185 bytes res/drawable-xhdpi/ic_recurrence_bubble_fill.png | Bin 2811 -> 2809 bytes res/drawable-xxhdpi/cal_widget_bg.9.png | Bin 1099 -> 1072 bytes res/drawable-xxhdpi/ic_recurrence_bubble_fill.png | Bin 5026 -> 5023 bytes 8 files changed, 0 insertions(+), 0 deletions(-) diff --git a/res/drawable-hdpi/cal_widget_bg.9.png b/res/drawable-hdpi/cal_widget_bg.9.png index 18f4fd4c..5984d8a4 100644 Binary files a/res/drawable-hdpi/cal_widget_bg.9.png and b/res/drawable-hdpi/cal_widget_bg.9.png differ diff --git a/res/drawable-hdpi/ic_recurrence_bubble_fill.png b/res/drawable-hdpi/ic_recurrence_bubble_fill.png index 96b5dd56..3e875c89 100644 Binary files a/res/drawable-hdpi/ic_recurrence_bubble_fill.png and b/res/drawable-hdpi/ic_recurrence_bubble_fill.png differ diff --git a/res/drawable-mdpi/cal_widget_bg.9.png b/res/drawable-mdpi/cal_widget_bg.9.png index f3a5621d..4472642b 100644 Binary files a/res/drawable-mdpi/cal_widget_bg.9.png and b/res/drawable-mdpi/cal_widget_bg.9.png differ diff --git a/res/drawable-mdpi/ic_recurrence_bubble_fill.png b/res/drawable-mdpi/ic_recurrence_bubble_fill.png index a93b17c1..de33dd52 100644 Binary files a/res/drawable-mdpi/ic_recurrence_bubble_fill.png and b/res/drawable-mdpi/ic_recurrence_bubble_fill.png differ diff --git a/res/drawable-xhdpi/cal_widget_bg.9.png b/res/drawable-xhdpi/cal_widget_bg.9.png index 46f19fd7..f8607b19 100644 Binary files a/res/drawable-xhdpi/cal_widget_bg.9.png and b/res/drawable-xhdpi/cal_widget_bg.9.png differ diff --git a/res/drawable-xhdpi/ic_recurrence_bubble_fill.png b/res/drawable-xhdpi/ic_recurrence_bubble_fill.png index 85d18cc4..3687bb1c 100644 Binary files a/res/drawable-xhdpi/ic_recurrence_bubble_fill.png and b/res/drawable-xhdpi/ic_recurrence_bubble_fill.png differ diff --git a/res/drawable-xxhdpi/cal_widget_bg.9.png b/res/drawable-xxhdpi/cal_widget_bg.9.png index 52ab1a35..c2824ad2 100644 Binary files a/res/drawable-xxhdpi/cal_widget_bg.9.png and b/res/drawable-xxhdpi/cal_widget_bg.9.png differ diff --git a/res/drawable-xxhdpi/ic_recurrence_bubble_fill.png b/res/drawable-xxhdpi/ic_recurrence_bubble_fill.png index 3a26d858..a40b7074 100644 Binary files a/res/drawable-xxhdpi/ic_recurrence_bubble_fill.png and b/res/drawable-xxhdpi/ic_recurrence_bubble_fill.png differ -- cgit v1.2.3 From 043a8670776043c5d5e8bbdc84dbcab395e2f047 Mon Sep 17 00:00:00 2001 From: Ari Sachter-Zeltzer Date: Tue, 24 Sep 2013 11:48:02 -0700 Subject: Calendar deblueing Change-Id: I0203ed68e02c0af632f87755d884da130250359f (cherry picked from commit 5615902f5e84f5d828917d070956dd2043303e57) --- ...me_bottom_select_underselect_pressed_holo_light.9.png | Bin 0 -> 577 bytes ...ottom_select_underunselected_pressed_holo_light.9.png | Bin 0 -> 860 bytes .../calname_bottom_unselected_pressed_holo_light.9.png | Bin 0 -> 233 bytes ...ottom_unselected_underselect_pressed_holo_light.9.png | Bin 0 -> 563 bytes .../calname_select_underselect_pressed_holo_light.9.png | Bin 0 -> 253 bytes ...lname_select_underunselected_pressed_holo_light.9.png | Bin 0 -> 596 bytes .../calname_unselected_pressed_holo_light.9.png | Bin 0 -> 214 bytes ...lname_unselected_underselect_pressed_holo_light.9.png | Bin 0 -> 541 bytes .../header_bg_cal_widget_pressed_holo.9.png | Bin 0 -> 356 bytes res/drawable-hdpi-v19/list_multi_left_pressed_holo.9.png | Bin 0 -> 261 bytes res/drawable-hdpi-v19/list_pressed_holo.9.png | Bin 0 -> 209 bytes .../switch_thumb_pressed_holo_light.9.png | Bin 0 -> 345 bytes ...me_bottom_select_underselect_pressed_holo_light.9.png | Bin 0 -> 398 bytes ...ottom_select_underunselected_pressed_holo_light.9.png | Bin 0 -> 564 bytes .../calname_bottom_unselected_pressed_holo_light.9.png | Bin 0 -> 198 bytes ...ottom_unselected_underselect_pressed_holo_light.9.png | Bin 0 -> 408 bytes .../calname_select_underselect_pressed_holo_light.9.png | Bin 0 -> 216 bytes ...lname_select_underunselected_pressed_holo_light.9.png | Bin 0 -> 370 bytes .../calname_unselected_pressed_holo_light.9.png | Bin 0 -> 182 bytes ...lname_unselected_underselect_pressed_holo_light.9.png | Bin 0 -> 380 bytes .../header_bg_cal_widget_pressed_holo.9.png | Bin 0 -> 300 bytes res/drawable-mdpi-v19/list_multi_left_pressed_holo.9.png | Bin 0 -> 218 bytes res/drawable-mdpi-v19/list_pressed_holo.9.png | Bin 0 -> 179 bytes .../switch_thumb_pressed_holo_light.9.png | Bin 0 -> 300 bytes ...me_bottom_select_underselect_pressed_holo_light.9.png | Bin 0 -> 726 bytes ...ottom_select_underunselected_pressed_holo_light.9.png | Bin 0 -> 1130 bytes .../calname_bottom_unselected_pressed_holo_light.9.png | Bin 0 -> 250 bytes ...ottom_unselected_underselect_pressed_holo_light.9.png | Bin 0 -> 738 bytes .../calname_select_underselect_pressed_holo_light.9.png | Bin 0 -> 265 bytes ...lname_select_underunselected_pressed_holo_light.9.png | Bin 0 -> 702 bytes .../calname_unselected_pressed_holo_light.9.png | Bin 0 -> 226 bytes ...lname_unselected_underselect_pressed_holo_light.9.png | Bin 0 -> 692 bytes .../header_bg_cal_widget_pressed_holo.9.png | Bin 0 -> 451 bytes .../list_multi_left_pressed_holo.9.png | Bin 0 -> 289 bytes res/drawable-xhdpi-v19/list_pressed_holo.9.png | Bin 0 -> 229 bytes .../switch_thumb_pressed_holo_light.9.png | Bin 0 -> 460 bytes ...me_bottom_select_underselect_pressed_holo_light.9.png | Bin 0 -> 1810 bytes ...ottom_select_underunselected_pressed_holo_light.9.png | Bin 0 -> 2277 bytes .../calname_bottom_unselected_pressed_holo_light.9.png | Bin 0 -> 1268 bytes ...ottom_unselected_underselect_pressed_holo_light.9.png | Bin 0 -> 1825 bytes .../calname_select_underselect_pressed_holo_light.9.png | Bin 0 -> 1199 bytes ...lname_select_underunselected_pressed_holo_light.9.png | Bin 0 -> 1736 bytes .../calname_unselected_pressed_holo_light.9.png | Bin 0 -> 1178 bytes ...lname_unselected_underselect_pressed_holo_light.9.png | Bin 0 -> 1770 bytes .../header_bg_cal_widget_pressed_holo.9.png | Bin 0 -> 1393 bytes .../list_multi_left_pressed_holo.9.png | Bin 0 -> 1256 bytes res/drawable-xxhdpi-v19/list_pressed_holo.9.png | Bin 0 -> 1142 bytes .../switch_thumb_pressed_holo_light.9.png | Bin 0 -> 631 bytes 48 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 res/drawable-hdpi-v19/calname_bottom_select_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-hdpi-v19/calname_bottom_select_underunselected_pressed_holo_light.9.png create mode 100644 res/drawable-hdpi-v19/calname_bottom_unselected_pressed_holo_light.9.png create mode 100644 res/drawable-hdpi-v19/calname_bottom_unselected_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-hdpi-v19/calname_select_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-hdpi-v19/calname_select_underunselected_pressed_holo_light.9.png create mode 100644 res/drawable-hdpi-v19/calname_unselected_pressed_holo_light.9.png create mode 100644 res/drawable-hdpi-v19/calname_unselected_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-hdpi-v19/header_bg_cal_widget_pressed_holo.9.png create mode 100644 res/drawable-hdpi-v19/list_multi_left_pressed_holo.9.png create mode 100644 res/drawable-hdpi-v19/list_pressed_holo.9.png create mode 100644 res/drawable-hdpi-v19/switch_thumb_pressed_holo_light.9.png create mode 100644 res/drawable-mdpi-v19/calname_bottom_select_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-mdpi-v19/calname_bottom_select_underunselected_pressed_holo_light.9.png create mode 100644 res/drawable-mdpi-v19/calname_bottom_unselected_pressed_holo_light.9.png create mode 100644 res/drawable-mdpi-v19/calname_bottom_unselected_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-mdpi-v19/calname_select_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-mdpi-v19/calname_select_underunselected_pressed_holo_light.9.png create mode 100644 res/drawable-mdpi-v19/calname_unselected_pressed_holo_light.9.png create mode 100644 res/drawable-mdpi-v19/calname_unselected_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-mdpi-v19/header_bg_cal_widget_pressed_holo.9.png create mode 100644 res/drawable-mdpi-v19/list_multi_left_pressed_holo.9.png create mode 100644 res/drawable-mdpi-v19/list_pressed_holo.9.png create mode 100644 res/drawable-mdpi-v19/switch_thumb_pressed_holo_light.9.png create mode 100644 res/drawable-xhdpi-v19/calname_bottom_select_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-xhdpi-v19/calname_bottom_select_underunselected_pressed_holo_light.9.png create mode 100644 res/drawable-xhdpi-v19/calname_bottom_unselected_pressed_holo_light.9.png create mode 100644 res/drawable-xhdpi-v19/calname_bottom_unselected_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-xhdpi-v19/calname_select_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-xhdpi-v19/calname_select_underunselected_pressed_holo_light.9.png create mode 100644 res/drawable-xhdpi-v19/calname_unselected_pressed_holo_light.9.png create mode 100644 res/drawable-xhdpi-v19/calname_unselected_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-xhdpi-v19/header_bg_cal_widget_pressed_holo.9.png create mode 100644 res/drawable-xhdpi-v19/list_multi_left_pressed_holo.9.png create mode 100644 res/drawable-xhdpi-v19/list_pressed_holo.9.png create mode 100644 res/drawable-xhdpi-v19/switch_thumb_pressed_holo_light.9.png create mode 100644 res/drawable-xxhdpi-v19/calname_bottom_select_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-xxhdpi-v19/calname_bottom_select_underunselected_pressed_holo_light.9.png create mode 100644 res/drawable-xxhdpi-v19/calname_bottom_unselected_pressed_holo_light.9.png create mode 100644 res/drawable-xxhdpi-v19/calname_bottom_unselected_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-xxhdpi-v19/calname_select_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-xxhdpi-v19/calname_select_underunselected_pressed_holo_light.9.png create mode 100644 res/drawable-xxhdpi-v19/calname_unselected_pressed_holo_light.9.png create mode 100644 res/drawable-xxhdpi-v19/calname_unselected_underselect_pressed_holo_light.9.png create mode 100644 res/drawable-xxhdpi-v19/header_bg_cal_widget_pressed_holo.9.png create mode 100644 res/drawable-xxhdpi-v19/list_multi_left_pressed_holo.9.png create mode 100644 res/drawable-xxhdpi-v19/list_pressed_holo.9.png create mode 100644 res/drawable-xxhdpi-v19/switch_thumb_pressed_holo_light.9.png diff --git a/res/drawable-hdpi-v19/calname_bottom_select_underselect_pressed_holo_light.9.png b/res/drawable-hdpi-v19/calname_bottom_select_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..cd7ad05a Binary files /dev/null and b/res/drawable-hdpi-v19/calname_bottom_select_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-hdpi-v19/calname_bottom_select_underunselected_pressed_holo_light.9.png b/res/drawable-hdpi-v19/calname_bottom_select_underunselected_pressed_holo_light.9.png new file mode 100644 index 00000000..0b3a302d Binary files /dev/null and b/res/drawable-hdpi-v19/calname_bottom_select_underunselected_pressed_holo_light.9.png differ diff --git a/res/drawable-hdpi-v19/calname_bottom_unselected_pressed_holo_light.9.png b/res/drawable-hdpi-v19/calname_bottom_unselected_pressed_holo_light.9.png new file mode 100644 index 00000000..b1cddbb1 Binary files /dev/null and b/res/drawable-hdpi-v19/calname_bottom_unselected_pressed_holo_light.9.png differ diff --git a/res/drawable-hdpi-v19/calname_bottom_unselected_underselect_pressed_holo_light.9.png b/res/drawable-hdpi-v19/calname_bottom_unselected_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..917ba509 Binary files /dev/null and b/res/drawable-hdpi-v19/calname_bottom_unselected_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-hdpi-v19/calname_select_underselect_pressed_holo_light.9.png b/res/drawable-hdpi-v19/calname_select_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..ff8dd953 Binary files /dev/null and b/res/drawable-hdpi-v19/calname_select_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-hdpi-v19/calname_select_underunselected_pressed_holo_light.9.png b/res/drawable-hdpi-v19/calname_select_underunselected_pressed_holo_light.9.png new file mode 100644 index 00000000..73726263 Binary files /dev/null and b/res/drawable-hdpi-v19/calname_select_underunselected_pressed_holo_light.9.png differ diff --git a/res/drawable-hdpi-v19/calname_unselected_pressed_holo_light.9.png b/res/drawable-hdpi-v19/calname_unselected_pressed_holo_light.9.png new file mode 100644 index 00000000..5f97b008 Binary files /dev/null and b/res/drawable-hdpi-v19/calname_unselected_pressed_holo_light.9.png differ diff --git a/res/drawable-hdpi-v19/calname_unselected_underselect_pressed_holo_light.9.png b/res/drawable-hdpi-v19/calname_unselected_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..f97beddd Binary files /dev/null and b/res/drawable-hdpi-v19/calname_unselected_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-hdpi-v19/header_bg_cal_widget_pressed_holo.9.png b/res/drawable-hdpi-v19/header_bg_cal_widget_pressed_holo.9.png new file mode 100644 index 00000000..11480979 Binary files /dev/null and b/res/drawable-hdpi-v19/header_bg_cal_widget_pressed_holo.9.png differ diff --git a/res/drawable-hdpi-v19/list_multi_left_pressed_holo.9.png b/res/drawable-hdpi-v19/list_multi_left_pressed_holo.9.png new file mode 100644 index 00000000..7d7116d0 Binary files /dev/null and b/res/drawable-hdpi-v19/list_multi_left_pressed_holo.9.png differ diff --git a/res/drawable-hdpi-v19/list_pressed_holo.9.png b/res/drawable-hdpi-v19/list_pressed_holo.9.png new file mode 100644 index 00000000..cd69b8a7 Binary files /dev/null and b/res/drawable-hdpi-v19/list_pressed_holo.9.png differ diff --git a/res/drawable-hdpi-v19/switch_thumb_pressed_holo_light.9.png b/res/drawable-hdpi-v19/switch_thumb_pressed_holo_light.9.png new file mode 100644 index 00000000..02c243c6 Binary files /dev/null and b/res/drawable-hdpi-v19/switch_thumb_pressed_holo_light.9.png differ diff --git a/res/drawable-mdpi-v19/calname_bottom_select_underselect_pressed_holo_light.9.png b/res/drawable-mdpi-v19/calname_bottom_select_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..dfee3fd6 Binary files /dev/null and b/res/drawable-mdpi-v19/calname_bottom_select_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-mdpi-v19/calname_bottom_select_underunselected_pressed_holo_light.9.png b/res/drawable-mdpi-v19/calname_bottom_select_underunselected_pressed_holo_light.9.png new file mode 100644 index 00000000..94ff5edf Binary files /dev/null and b/res/drawable-mdpi-v19/calname_bottom_select_underunselected_pressed_holo_light.9.png differ diff --git a/res/drawable-mdpi-v19/calname_bottom_unselected_pressed_holo_light.9.png b/res/drawable-mdpi-v19/calname_bottom_unselected_pressed_holo_light.9.png new file mode 100644 index 00000000..300ae697 Binary files /dev/null and b/res/drawable-mdpi-v19/calname_bottom_unselected_pressed_holo_light.9.png differ diff --git a/res/drawable-mdpi-v19/calname_bottom_unselected_underselect_pressed_holo_light.9.png b/res/drawable-mdpi-v19/calname_bottom_unselected_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..33aa136e Binary files /dev/null and b/res/drawable-mdpi-v19/calname_bottom_unselected_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-mdpi-v19/calname_select_underselect_pressed_holo_light.9.png b/res/drawable-mdpi-v19/calname_select_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..9e4c089c Binary files /dev/null and b/res/drawable-mdpi-v19/calname_select_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-mdpi-v19/calname_select_underunselected_pressed_holo_light.9.png b/res/drawable-mdpi-v19/calname_select_underunselected_pressed_holo_light.9.png new file mode 100644 index 00000000..ee87cc37 Binary files /dev/null and b/res/drawable-mdpi-v19/calname_select_underunselected_pressed_holo_light.9.png differ diff --git a/res/drawable-mdpi-v19/calname_unselected_pressed_holo_light.9.png b/res/drawable-mdpi-v19/calname_unselected_pressed_holo_light.9.png new file mode 100644 index 00000000..b86e62ea Binary files /dev/null and b/res/drawable-mdpi-v19/calname_unselected_pressed_holo_light.9.png differ diff --git a/res/drawable-mdpi-v19/calname_unselected_underselect_pressed_holo_light.9.png b/res/drawable-mdpi-v19/calname_unselected_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..7154b50f Binary files /dev/null and b/res/drawable-mdpi-v19/calname_unselected_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-mdpi-v19/header_bg_cal_widget_pressed_holo.9.png b/res/drawable-mdpi-v19/header_bg_cal_widget_pressed_holo.9.png new file mode 100644 index 00000000..b2088ea4 Binary files /dev/null and b/res/drawable-mdpi-v19/header_bg_cal_widget_pressed_holo.9.png differ diff --git a/res/drawable-mdpi-v19/list_multi_left_pressed_holo.9.png b/res/drawable-mdpi-v19/list_multi_left_pressed_holo.9.png new file mode 100644 index 00000000..29475575 Binary files /dev/null and b/res/drawable-mdpi-v19/list_multi_left_pressed_holo.9.png differ diff --git a/res/drawable-mdpi-v19/list_pressed_holo.9.png b/res/drawable-mdpi-v19/list_pressed_holo.9.png new file mode 100644 index 00000000..6c09dea7 Binary files /dev/null and b/res/drawable-mdpi-v19/list_pressed_holo.9.png differ diff --git a/res/drawable-mdpi-v19/switch_thumb_pressed_holo_light.9.png b/res/drawable-mdpi-v19/switch_thumb_pressed_holo_light.9.png new file mode 100644 index 00000000..39e8df77 Binary files /dev/null and b/res/drawable-mdpi-v19/switch_thumb_pressed_holo_light.9.png differ diff --git a/res/drawable-xhdpi-v19/calname_bottom_select_underselect_pressed_holo_light.9.png b/res/drawable-xhdpi-v19/calname_bottom_select_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..be4c85ce Binary files /dev/null and b/res/drawable-xhdpi-v19/calname_bottom_select_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-xhdpi-v19/calname_bottom_select_underunselected_pressed_holo_light.9.png b/res/drawable-xhdpi-v19/calname_bottom_select_underunselected_pressed_holo_light.9.png new file mode 100644 index 00000000..52c61aa0 Binary files /dev/null and b/res/drawable-xhdpi-v19/calname_bottom_select_underunselected_pressed_holo_light.9.png differ diff --git a/res/drawable-xhdpi-v19/calname_bottom_unselected_pressed_holo_light.9.png b/res/drawable-xhdpi-v19/calname_bottom_unselected_pressed_holo_light.9.png new file mode 100644 index 00000000..7827b6e1 Binary files /dev/null and b/res/drawable-xhdpi-v19/calname_bottom_unselected_pressed_holo_light.9.png differ diff --git a/res/drawable-xhdpi-v19/calname_bottom_unselected_underselect_pressed_holo_light.9.png b/res/drawable-xhdpi-v19/calname_bottom_unselected_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..2cec17ec Binary files /dev/null and b/res/drawable-xhdpi-v19/calname_bottom_unselected_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-xhdpi-v19/calname_select_underselect_pressed_holo_light.9.png b/res/drawable-xhdpi-v19/calname_select_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..163fe03a Binary files /dev/null and b/res/drawable-xhdpi-v19/calname_select_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-xhdpi-v19/calname_select_underunselected_pressed_holo_light.9.png b/res/drawable-xhdpi-v19/calname_select_underunselected_pressed_holo_light.9.png new file mode 100644 index 00000000..ba8fb952 Binary files /dev/null and b/res/drawable-xhdpi-v19/calname_select_underunselected_pressed_holo_light.9.png differ diff --git a/res/drawable-xhdpi-v19/calname_unselected_pressed_holo_light.9.png b/res/drawable-xhdpi-v19/calname_unselected_pressed_holo_light.9.png new file mode 100644 index 00000000..e9525b89 Binary files /dev/null and b/res/drawable-xhdpi-v19/calname_unselected_pressed_holo_light.9.png differ diff --git a/res/drawable-xhdpi-v19/calname_unselected_underselect_pressed_holo_light.9.png b/res/drawable-xhdpi-v19/calname_unselected_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..235bcce9 Binary files /dev/null and b/res/drawable-xhdpi-v19/calname_unselected_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-xhdpi-v19/header_bg_cal_widget_pressed_holo.9.png b/res/drawable-xhdpi-v19/header_bg_cal_widget_pressed_holo.9.png new file mode 100644 index 00000000..92989577 Binary files /dev/null and b/res/drawable-xhdpi-v19/header_bg_cal_widget_pressed_holo.9.png differ diff --git a/res/drawable-xhdpi-v19/list_multi_left_pressed_holo.9.png b/res/drawable-xhdpi-v19/list_multi_left_pressed_holo.9.png new file mode 100644 index 00000000..a7d994a6 Binary files /dev/null and b/res/drawable-xhdpi-v19/list_multi_left_pressed_holo.9.png differ diff --git a/res/drawable-xhdpi-v19/list_pressed_holo.9.png b/res/drawable-xhdpi-v19/list_pressed_holo.9.png new file mode 100644 index 00000000..19bcf487 Binary files /dev/null and b/res/drawable-xhdpi-v19/list_pressed_holo.9.png differ diff --git a/res/drawable-xhdpi-v19/switch_thumb_pressed_holo_light.9.png b/res/drawable-xhdpi-v19/switch_thumb_pressed_holo_light.9.png new file mode 100644 index 00000000..064d2947 Binary files /dev/null and b/res/drawable-xhdpi-v19/switch_thumb_pressed_holo_light.9.png differ diff --git a/res/drawable-xxhdpi-v19/calname_bottom_select_underselect_pressed_holo_light.9.png b/res/drawable-xxhdpi-v19/calname_bottom_select_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..d20e1db9 Binary files /dev/null and b/res/drawable-xxhdpi-v19/calname_bottom_select_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-xxhdpi-v19/calname_bottom_select_underunselected_pressed_holo_light.9.png b/res/drawable-xxhdpi-v19/calname_bottom_select_underunselected_pressed_holo_light.9.png new file mode 100644 index 00000000..923ae227 Binary files /dev/null and b/res/drawable-xxhdpi-v19/calname_bottom_select_underunselected_pressed_holo_light.9.png differ diff --git a/res/drawable-xxhdpi-v19/calname_bottom_unselected_pressed_holo_light.9.png b/res/drawable-xxhdpi-v19/calname_bottom_unselected_pressed_holo_light.9.png new file mode 100644 index 00000000..37830a53 Binary files /dev/null and b/res/drawable-xxhdpi-v19/calname_bottom_unselected_pressed_holo_light.9.png differ diff --git a/res/drawable-xxhdpi-v19/calname_bottom_unselected_underselect_pressed_holo_light.9.png b/res/drawable-xxhdpi-v19/calname_bottom_unselected_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..9849f309 Binary files /dev/null and b/res/drawable-xxhdpi-v19/calname_bottom_unselected_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-xxhdpi-v19/calname_select_underselect_pressed_holo_light.9.png b/res/drawable-xxhdpi-v19/calname_select_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..051f2902 Binary files /dev/null and b/res/drawable-xxhdpi-v19/calname_select_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-xxhdpi-v19/calname_select_underunselected_pressed_holo_light.9.png b/res/drawable-xxhdpi-v19/calname_select_underunselected_pressed_holo_light.9.png new file mode 100644 index 00000000..9a45062c Binary files /dev/null and b/res/drawable-xxhdpi-v19/calname_select_underunselected_pressed_holo_light.9.png differ diff --git a/res/drawable-xxhdpi-v19/calname_unselected_pressed_holo_light.9.png b/res/drawable-xxhdpi-v19/calname_unselected_pressed_holo_light.9.png new file mode 100644 index 00000000..07e8e1cf Binary files /dev/null and b/res/drawable-xxhdpi-v19/calname_unselected_pressed_holo_light.9.png differ diff --git a/res/drawable-xxhdpi-v19/calname_unselected_underselect_pressed_holo_light.9.png b/res/drawable-xxhdpi-v19/calname_unselected_underselect_pressed_holo_light.9.png new file mode 100644 index 00000000..ec894819 Binary files /dev/null and b/res/drawable-xxhdpi-v19/calname_unselected_underselect_pressed_holo_light.9.png differ diff --git a/res/drawable-xxhdpi-v19/header_bg_cal_widget_pressed_holo.9.png b/res/drawable-xxhdpi-v19/header_bg_cal_widget_pressed_holo.9.png new file mode 100644 index 00000000..5b94eee2 Binary files /dev/null and b/res/drawable-xxhdpi-v19/header_bg_cal_widget_pressed_holo.9.png differ diff --git a/res/drawable-xxhdpi-v19/list_multi_left_pressed_holo.9.png b/res/drawable-xxhdpi-v19/list_multi_left_pressed_holo.9.png new file mode 100644 index 00000000..75841b94 Binary files /dev/null and b/res/drawable-xxhdpi-v19/list_multi_left_pressed_holo.9.png differ diff --git a/res/drawable-xxhdpi-v19/list_pressed_holo.9.png b/res/drawable-xxhdpi-v19/list_pressed_holo.9.png new file mode 100644 index 00000000..0d5d985c Binary files /dev/null and b/res/drawable-xxhdpi-v19/list_pressed_holo.9.png differ diff --git a/res/drawable-xxhdpi-v19/switch_thumb_pressed_holo_light.9.png b/res/drawable-xxhdpi-v19/switch_thumb_pressed_holo_light.9.png new file mode 100644 index 00000000..2370b63a Binary files /dev/null and b/res/drawable-xxhdpi-v19/switch_thumb_pressed_holo_light.9.png differ -- cgit v1.2.3 From 1d2a83b9ccb746a67447873b65714f655ebb861a Mon Sep 17 00:00:00 2001 From: Sam Blitzstein Date: Tue, 24 Sep 2013 18:56:38 -0700 Subject: More calendar de-blueing Touch states for events in week/dayview, and agenda view. Change-Id: I3cdabd7d5480f2a1e74db8360e621f820788254e --- res/drawable-hdpi-v19/list_pressed_holo.9.png | Bin 209 -> 159 bytes res/drawable-mdpi-v19/list_pressed_holo.9.png | Bin 179 -> 158 bytes res/drawable-xhdpi-v19/list_pressed_holo.9.png | Bin 229 -> 163 bytes res/drawable-xxhdpi-v19/list_pressed_holo.9.png | Bin 1142 -> 1051 bytes res/values-v19/colors.xml | 24 ++++++++++++++++++++++++ 5 files changed, 24 insertions(+) create mode 100644 res/values-v19/colors.xml diff --git a/res/drawable-hdpi-v19/list_pressed_holo.9.png b/res/drawable-hdpi-v19/list_pressed_holo.9.png index cd69b8a7..596accb8 100644 Binary files a/res/drawable-hdpi-v19/list_pressed_holo.9.png and b/res/drawable-hdpi-v19/list_pressed_holo.9.png differ diff --git a/res/drawable-mdpi-v19/list_pressed_holo.9.png b/res/drawable-mdpi-v19/list_pressed_holo.9.png index 6c09dea7..fd0e8d7d 100644 Binary files a/res/drawable-mdpi-v19/list_pressed_holo.9.png and b/res/drawable-mdpi-v19/list_pressed_holo.9.png differ diff --git a/res/drawable-xhdpi-v19/list_pressed_holo.9.png b/res/drawable-xhdpi-v19/list_pressed_holo.9.png index 19bcf487..29037a0d 100644 Binary files a/res/drawable-xhdpi-v19/list_pressed_holo.9.png and b/res/drawable-xhdpi-v19/list_pressed_holo.9.png differ diff --git a/res/drawable-xxhdpi-v19/list_pressed_holo.9.png b/res/drawable-xxhdpi-v19/list_pressed_holo.9.png index 0d5d985c..d4952eaf 100644 Binary files a/res/drawable-xxhdpi-v19/list_pressed_holo.9.png and b/res/drawable-xxhdpi-v19/list_pressed_holo.9.png differ diff --git a/res/values-v19/colors.xml b/res/values-v19/colors.xml new file mode 100644 index 00000000..33cfbff9 --- /dev/null +++ b/res/values-v19/colors.xml @@ -0,0 +1,24 @@ + + + + #3fcccccc + #3fcccccc + #3fcccccc + -- cgit v1.2.3 From 4329c74c3712ebb7b9c3885760bbf9127ca233b0 Mon Sep 17 00:00:00 2001 From: Mindy Pereira Date: Wed, 25 Sep 2013 11:25:20 -0700 Subject: Use the holodark assets/ colors instead of hololight Deblueing! Change-Id: Ia49f0200c96b4d4fa76a19abab73f5c813c12972 --- res/drawable-hdpi-v19/list_pressed_holo.9.png | Bin 159 -> 159 bytes res/drawable-mdpi-v19/list_pressed_holo.9.png | Bin 158 -> 158 bytes res/drawable-xhdpi-v19/list_pressed_holo.9.png | Bin 163 -> 163 bytes res/drawable-xxhdpi-v19/list_pressed_holo.9.png | Bin 1051 -> 1051 bytes res/values-v19/colors.xml | 6 +++--- 5 files changed, 3 insertions(+), 3 deletions(-) diff --git a/res/drawable-hdpi-v19/list_pressed_holo.9.png b/res/drawable-hdpi-v19/list_pressed_holo.9.png index 596accb8..2054530e 100644 Binary files a/res/drawable-hdpi-v19/list_pressed_holo.9.png and b/res/drawable-hdpi-v19/list_pressed_holo.9.png differ diff --git a/res/drawable-mdpi-v19/list_pressed_holo.9.png b/res/drawable-mdpi-v19/list_pressed_holo.9.png index fd0e8d7d..061904c4 100644 Binary files a/res/drawable-mdpi-v19/list_pressed_holo.9.png and b/res/drawable-mdpi-v19/list_pressed_holo.9.png differ diff --git a/res/drawable-xhdpi-v19/list_pressed_holo.9.png b/res/drawable-xhdpi-v19/list_pressed_holo.9.png index 29037a0d..f4af9265 100644 Binary files a/res/drawable-xhdpi-v19/list_pressed_holo.9.png and b/res/drawable-xhdpi-v19/list_pressed_holo.9.png differ diff --git a/res/drawable-xxhdpi-v19/list_pressed_holo.9.png b/res/drawable-xxhdpi-v19/list_pressed_holo.9.png index d4952eaf..1352a170 100644 Binary files a/res/drawable-xxhdpi-v19/list_pressed_holo.9.png and b/res/drawable-xxhdpi-v19/list_pressed_holo.9.png differ diff --git a/res/values-v19/colors.xml b/res/values-v19/colors.xml index 33cfbff9..723035a2 100644 --- a/res/values-v19/colors.xml +++ b/res/values-v19/colors.xml @@ -18,7 +18,7 @@ */ --> - #3fcccccc - #3fcccccc - #3fcccccc + #33999999 + #33999999 + #33999999 -- cgit v1.2.3 From 4e7b1b2244f2dbd4fa30cc506864f3be19a95f01 Mon Sep 17 00:00:00 2001 From: Sam Blitzstein Date: Wed, 9 Oct 2013 10:19:37 -0700 Subject: Use the correct version code check for K. Change-Id: I190d33b06263e15157ea457d6ab76dc4fe5e497a --- src/com/android/calendar/Utils.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/com/android/calendar/Utils.java b/src/com/android/calendar/Utils.java index 40a9e58d..4018f22b 100644 --- a/src/com/android/calendar/Utils.java +++ b/src/com/android/calendar/Utils.java @@ -211,9 +211,7 @@ public class Utils { * Returns whether the SDK is the KeyLimePie release or later. */ public static boolean isKeyLimePieOrLater() { - // TODO when SDK is set to 19, switch back to this: -// return Build.VERSION.SDK_INT > Build.VERSION_CODES.JELLY_BEAN_MR2; - return "KeyLimePie".equals(Build.VERSION.CODENAME); + return Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT; } public static int getViewTypeFromIntentAndSharedPref(Activity activity) { -- cgit v1.2.3 From fb0097adc5656ccd052abb9e6e807355768d200a Mon Sep 17 00:00:00 2001 From: James Kung Date: Mon, 2 Dec 2013 15:00:40 -0800 Subject: Adding requiredAccountType attribute into fuchsia (DO NOT MERGE) Change-Id: Ife749158cef82ded5899776e21b392234363eb8a --- AndroidManifest.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AndroidManifest.xml b/AndroidManifest.xml index c9f3a2f9..1dbf1e18 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -44,7 +44,8 @@ android:label="@string/app_label" android:icon="@mipmap/ic_launcher_calendar" android:taskAffinity="android.task.calendar" android:hardwareAccelerated="true" - android:backupAgent="com.android.calendar.CalendarBackupAgent" > + android:backupAgent="com.android.calendar.CalendarBackupAgent" + android:requiredAccountType="*"> -- cgit v1.2.3 From f52c64145b6219aeceeb93f4bdb5e2c069bf48a4 Mon Sep 17 00:00:00 2001 From: Sam Blitzstein Date: Wed, 4 Dec 2013 12:59:36 -0800 Subject: Force a manual, incremental sync one time, as early as possible. Either at package replacement (doesn't seem to work), restart, or app load. Only do this one time. This is to ensure the database goes through the proper upgrade path in case its in a bad state. Bug: 11828610 Change-Id: I850bef5d105fcb806f74b3fdffba1dfef03a0a1b --- AndroidManifest.xml | 11 ++++++++++ src/com/android/calendar/AllInOneActivity.java | 3 +++ src/com/android/calendar/UpgradeReceiver.java | 29 ++++++++++++++++++++++++++ src/com/android/calendar/Utils.java | 23 ++++++++++++++++++++ 4 files changed, 66 insertions(+) create mode 100644 src/com/android/calendar/UpgradeReceiver.java diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 1dbf1e18..705b42e6 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -189,6 +189,17 @@ + + + + + + + + + + + diff --git a/src/com/android/calendar/AllInOneActivity.java b/src/com/android/calendar/AllInOneActivity.java index e61d69c8..0e1feb49 100644 --- a/src/com/android/calendar/AllInOneActivity.java +++ b/src/com/android/calendar/AllInOneActivity.java @@ -507,6 +507,9 @@ public class AllInOneActivity extends AbstractCalendarActivity implements EventH protected void onResume() { super.onResume(); + // Check if the upgrade code has ever been run. If not, force a sync just this one time. + Utils.trySyncAndDisableUpgradeReceiver(this); + // Must register as the first activity because this activity can modify // the list of event handlers in it's handle method. This affects who // the rest of the handlers the controller dispatches to are. diff --git a/src/com/android/calendar/UpgradeReceiver.java b/src/com/android/calendar/UpgradeReceiver.java new file mode 100644 index 00000000..0e89286d --- /dev/null +++ b/src/com/android/calendar/UpgradeReceiver.java @@ -0,0 +1,29 @@ +/* + * Copyright (C) 2013 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; + +import android.content.BroadcastReceiver; +import android.content.Context; +import android.content.Intent; + +public class UpgradeReceiver extends BroadcastReceiver { + @Override + public void onReceive(final Context context, final Intent intent) { + Utils.trySyncAndDisableUpgradeReceiver(context); + } + +} \ No newline at end of file diff --git a/src/com/android/calendar/Utils.java b/src/com/android/calendar/Utils.java index 4018f22b..41961852 100644 --- a/src/com/android/calendar/Utils.java +++ b/src/com/android/calendar/Utils.java @@ -22,6 +22,7 @@ import android.accounts.Account; import android.app.Activity; import android.app.SearchManager; import android.content.BroadcastReceiver; +import android.content.ComponentName; import android.content.ContentResolver; import android.content.Context; import android.content.Intent; @@ -848,6 +849,28 @@ public class Utils { return (0xff000000) | ((r | g | b) >> 8); } + public static void trySyncAndDisableUpgradeReceiver(Context context) { + final PackageManager pm = context.getPackageManager(); + ComponentName upgradeComponent = new ComponentName(context, UpgradeReceiver.class); + if (pm.getComponentEnabledSetting(upgradeComponent) == + PackageManager.COMPONENT_ENABLED_STATE_DISABLED) { + // The upgrade receiver has been disabled, which means this code has been run before, + // so no need to sync. + return; + } + + Bundle extras = new Bundle(); + extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true); + ContentResolver.requestSync( + null /* no account */, + Calendars.CONTENT_URI.getAuthority(), + extras); + + // Now unregister the receiver so that we won't continue to sync every time. + pm.setComponentEnabledSetting(upgradeComponent, + PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP); + } + // A single strand represents one color of events. Events are divided up by // color to make them convenient to draw. The black strand is special in // that it holds conflicting events as well as color settings for allday on -- cgit v1.2.3 From 922194336b8899fe6e6e098533d2796bfb4904e1 Mon Sep 17 00:00:00 2001 From: Sam Blitzstein Date: Thu, 5 Dec 2013 12:10:50 -0800 Subject: Allow app to upgrade database on install. Previously would only happen on run or on reboot. Bug: 11828610 Change-Id: Icd20434fb0504c1ad58ebbb97f5ca6fee59b8af0 --- AndroidManifest.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 705b42e6..e7de953c 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -196,7 +196,6 @@ - -- cgit v1.2.3