summaryrefslogtreecommitdiffstats
path: root/res/layout/edit_event_2.xml
diff options
context:
space:
mode:
authorIsaac Katzenelson <isaack@android.com>2011-06-09 18:02:44 -0700
committerIsaac Katzenelson <isaack@android.com>2011-06-10 10:11:47 -0700
commit2e46cff640b123ba5f7a67c934ae98e6b02a905f (patch)
tree4c9c874ef09ee270e9693983d79d869975cde9d6 /res/layout/edit_event_2.xml
parenteacbb786612b3fde3fd6286ab7fe6e03e00bb13b (diff)
downloadandroid_packages_apps_Calendar-2e46cff640b123ba5f7a67c934ae98e6b02a905f.tar.gz
android_packages_apps_Calendar-2e46cff640b123ba5f7a67c934ae98e6b02a905f.tar.bz2
android_packages_apps_Calendar-2e46cff640b123ba5f7a67c934ae98e6b02a905f.zip
Change the separators' layout in Edit Event view
Color calendar name in pre-existing events and fix organizer label in Event Info view Change-Id: Id040132f76b6eb9a814b6d90d9ce1700679dd4c0
Diffstat (limited to 'res/layout/edit_event_2.xml')
-rw-r--r--res/layout/edit_event_2.xml56
1 files changed, 33 insertions, 23 deletions
diff --git a/res/layout/edit_event_2.xml b/res/layout/edit_event_2.xml
index 25d6fd06..5324b656 100644
--- a/res/layout/edit_event_2.xml
+++ b/res/layout/edit_event_2.xml
@@ -68,7 +68,10 @@
style="@style/TextAppearance.EditEvent"
android:text="@string/response_no" />
</RadioGroup>
+ <View
+ style="@style/EditEventSeparator"/>
</LinearLayout>
+
<LinearLayout
android:id="@+id/organizer_row"
android:orientation="vertical"
@@ -86,6 +89,8 @@
android:layout_height="wrap_content"
android:layout_width="wrap_content"
style="@style/TextAppearance.EditEvent_Value" />
+ <View
+ style="@style/EditEventSeparator"/>
</LinearLayout>
<LinearLayout
android:id="@+id/add_attendees_row"
@@ -225,37 +230,42 @@
</LinearLayout>
- <View
- style="@style/EditEventSeparator"/>
<!-- PRESENCE - Show me as [busy | available] -->
<LinearLayout
android:id="@+id/availability_row"
- android:orientation="horizontal"
+ android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
- <TextView
- android:id="@+id/presence_label"
- android:text="@string/presence_label"
- android:layout_weight="0"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- style="@style/TextAppearance.EditEvent_Label"
- android:paddingRight="4dip" />
- <Spinner
- android:id="@+id/availability"
- android:entries="@array/availability"
- style="@style/TextAppearance.EditEvent_Value"
- android:layout_weight="1"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- android:contentDescription="@string/accessibility_reminder_showmeas"
- android:prompt="@string/presence_label" />
+ <View
+ style="@style/EditEventSeparator"/>
+ <LinearLayout
+ android:id="@+id/availability_row"
+ android:orientation="horizontal"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content">
+ <TextView
+ android:id="@+id/presence_label"
+ android:text="@string/presence_label"
+ android:layout_weight="0"
+ android:layout_height="wrap_content"
+ android:layout_width="wrap_content"
+ style="@style/TextAppearance.EditEvent_Label"
+ android:paddingRight="4dip" />
+ <Spinner
+ android:id="@+id/availability"
+ android:entries="@array/availability"
+ style="@style/TextAppearance.EditEvent_Value"
+ android:layout_weight="1"
+ android:layout_height="wrap_content"
+ android:layout_width="wrap_content"
+ android:contentDescription="@string/accessibility_reminder_showmeas"
+ android:prompt="@string/presence_label" />
+ </LinearLayout>
+ <View
+ style="@style/EditEventSeparator"/>
</LinearLayout>
- <View
- style="@style/EditEventSeparator"/>
-
<!-- PRIVACY -->
<LinearLayout
android:id="@+id/visibility_row"