summaryrefslogtreecommitdiffstats
path: root/res/layout/event_info_dialog.xml
diff options
context:
space:
mode:
authorMichael Chan <chanm@google.com>2012-05-09 10:23:45 -0700
committerMichael Chan <chanm@google.com>2012-05-09 14:58:05 -0700
commit2c8485c84855545a0a8a0a7cb26d7c401a32cdd5 (patch)
treecd90885631628173bd0a4783d4d84b5584830480 /res/layout/event_info_dialog.xml
parent84fbd42c4ea8bae2a0edbd49333cb7112bf3cd51 (diff)
downloadandroid_packages_apps_Calendar-2c8485c84855545a0a8a0a7cb26d7c401a32cdd5.tar.gz
android_packages_apps_Calendar-2c8485c84855545a0a8a0a7cb26d7c401a32cdd5.tar.bz2
android_packages_apps_Calendar-2c8485c84855545a0a8a0a7cb26d7c401a32cdd5.zip
Added support for launching custom apps for events
Bug: 6325441 Change-Id: Ieb8c7653321ccd28dfdcf0d02f4ce6be988501f2
Diffstat (limited to 'res/layout/event_info_dialog.xml')
-rw-r--r--res/layout/event_info_dialog.xml34
1 files changed, 33 insertions, 1 deletions
diff --git a/res/layout/event_info_dialog.xml b/res/layout/event_info_dialog.xml
index b2b6a21e..da9ea6fd 100644
--- a/res/layout/event_info_dialog.xml
+++ b/res/layout/event_info_dialog.xml
@@ -271,7 +271,7 @@
android:text="@string/email_guests_label"
android:layout_height="50dp"
android:layout_width="match_parent"
- android:layout_marginLeft="8dp"
+ android:layout_marginLeft="5dp"
android:layout_marginRight="0dp"
android:layout_gravity="left"
android:gravity="center_vertical"
@@ -287,6 +287,38 @@
style="@style/TextAppearance.EditEvent_LabelSmall" />
</LinearLayout>
+ <!-- LAUNCH CUSTOM APP -->
+ <LinearLayout
+ android:id="@+id/launch_custom_app_container"
+ android:visibility="gone"
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content">
+ <View
+ android:background="?android:attr/listDivider"
+ android:layout_height="1px"
+ android:layout_width="match_parent"
+ android:layout_marginLeft="8dip"
+ android:layout_marginRight="0dip" />
+ <Button
+ android:id="@+id/launch_custom_app_button"
+ android:layout_height="50dp"
+ android:layout_width="match_parent"
+ android:layout_marginLeft="5dp"
+ android:layout_marginRight="0dp"
+ android:layout_gravity="left"
+ android:gravity="center_vertical"
+ android:paddingBottom="0dp"
+ android:layout_marginTop="0dip"
+ android:layout_marginBottom="0dip"
+ android:textAllCaps="false"
+ android:textSize="16sp"
+ android:textColor="#777777"
+ android:background="?android:attr/selectableItemBackground"
+ android:drawablePadding="8dp"
+ style="@style/TextAppearance.EditEvent_LabelSmall" />
+ </LinearLayout>
+
<!-- GUEST LIST -->
<com.android.calendar.event.AttendeesView
android:id="@+id/long_attendee_list"