summaryrefslogtreecommitdiffstats
path: root/res/layout/calendars_dropdown_item.xml
diff options
context:
space:
mode:
authorMindy Pereira <mindyp@google.com>2012-05-08 15:32:41 -0700
committerMindy Pereira <mindyp@google.com>2012-05-08 16:01:03 -0700
commit2a1fb3538e4e76e585cf23721bd4c2bb2f76d020 (patch)
tree95aaae1693b5c43aeb89b3ecdffa1a89c579e8f8 /res/layout/calendars_dropdown_item.xml
parent5c7e982978167cc0da14383a6ac1647747809e3b (diff)
downloadandroid_packages_apps_Calendar-2a1fb3538e4e76e585cf23721bd4c2bb2f76d020.tar.gz
android_packages_apps_Calendar-2a1fb3538e4e76e585cf23721bd4c2bb2f76d020.tar.bz2
android_packages_apps_Calendar-2a1fb3538e4e76e585cf23721bd4c2bb2f76d020.zip
Add padding to the left side of attendees for phone; fixup calendar selector
Fixes b/5748059 event detail attendees left padding off in list Fixes b/5478751 Calendar switcher from New event view needs UI love Change-Id: Ia9774e2d0c1ef66a68eb8d5e22ccc5e34f6803c2
Diffstat (limited to 'res/layout/calendars_dropdown_item.xml')
-rw-r--r--res/layout/calendars_dropdown_item.xml12
1 files changed, 8 insertions, 4 deletions
diff --git a/res/layout/calendars_dropdown_item.xml b/res/layout/calendars_dropdown_item.xml
index 33ad7889..dbc60adc 100644
--- a/res/layout/calendars_dropdown_item.xml
+++ b/res/layout/calendars_dropdown_item.xml
@@ -18,24 +18,28 @@
android:orientation="horizontal"
android:gravity="center_vertical"
android:layout_height="wrap_content"
- android:layout_width="match_parent">
+ android:layout_width="match_parent"
+ android:paddingBottom="8dp"
+ android:paddingLeft="8dp"
+ android:paddingTop="8dp">
<View android:id="@+id/color"
android:layout_width="16dip"
android:layout_height="16dip"
android:layout_marginRight="4dip"
- android:layout_marginTop="8dip"
+ android:layout_marginTop="5dip"
/>
<TextView
android:id="@+id/calendar_name"
- style="?android:attr/textAppearanceLarge"
+ style="?android:attr/textAppearanceMedium"
android:singleLine="true"
android:layout_width="match_parent"
android:ellipsize="marquee"
android:layout_toRightOf="@id/color"
+ android:layout_alignParentTop="true"
android:layout_height="wrap_content"
- android:textColor="#FF000000"
+ android:textColor="#333333"
/>
<TextView