summaryrefslogtreecommitdiffstats
path: root/res/menu
diff options
context:
space:
mode:
authorSara Ting <sarating@google.com>2012-03-15 15:24:36 -0700
committerSara Ting <sarating@google.com>2012-03-23 10:01:34 -0700
commit42896f76d81dbae873614340a3a78b29e7d463d2 (patch)
tree604a8f9513b00a5a37aec568e25466e2f4ecf0e9 /res/menu
parentfcac9e3091e0c9cf7a3fb37ebbf4ddff44cc4d99 (diff)
downloadandroid_packages_apps_Calendar-42896f76d81dbae873614340a3a78b29e7d463d2.tar.gz
android_packages_apps_Calendar-42896f76d81dbae873614340a3a78b29e7d463d2.tar.bz2
android_packages_apps_Calendar-42896f76d81dbae873614340a3a78b29e7d463d2.zip
Adding 'Email attendees' button to event info screen.
Adding ability to email all the attendees of an event. All declining attendees are put in the 'cc' field, with all others in the 'to' field. Change-Id: Id6b2dbcc70a2aac22ce9027e0d356a5e8c785ba3
Diffstat (limited to 'res/menu')
-rw-r--r--res/menu/event_info_title_bar.xml13
1 files changed, 11 insertions, 2 deletions
diff --git a/res/menu/event_info_title_bar.xml b/res/menu/event_info_title_bar.xml
index 08c98632..ebae7574 100644
--- a/res/menu/event_info_title_bar.xml
+++ b/res/menu/event_info_title_bar.xml
@@ -21,11 +21,20 @@
android:title="@string/edit_label"
android:icon="@drawable/ic_menu_compose_holo_light"
android:showAsAction="withText|always"
- android:visibility="visible" />
+ android:enabled="false"
+ android:visible="false" />
+ <item android:id="@+id/info_action_mail"
+ android:alphabeticShortcut="m"
+ android:title="@string/email_attendees_label"
+ android:icon="@drawable/ic_menu_email_holo_light"
+ android:showAsAction="withText|always"
+ android:enabled="false"
+ android:visible="false" />
<item android:id="@+id/info_action_delete"
android:alphabeticShortcut="x"
android:title="@string/delete_label"
android:icon="@drawable/ic_menu_trash_holo_light"
android:showAsAction="withText|always"
- android:visibility="visible" />
+ android:enabled="false"
+ android:visible="false" />
</menu>