diff options
author | Andrew Lee <anwlee@google.com> | 2014-06-12 01:05:37 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-06-11 23:10:23 +0000 |
commit | eb43f8e59f34e9ea7ad4992cae34ff7551f9c56d (patch) | |
tree | fde0acda5717c1b63acd38bdfc88d1295d89a0b8 | |
parent | abd14766bf305ec5cee6ffcff189ad7bcee27a06 (diff) | |
parent | 64c4552a1341cd1157ce6975d619358ed6df4b63 (diff) |
Merge "Increased padding beneath the call log day/group headers."
-rw-r--r-- | res/layout/call_log_list_item.xml | 5 | ||||
-rw-r--r-- | res/values/dimens.xml | 3 |
2 files changed, 4 insertions, 4 deletions
diff --git a/res/layout/call_log_list_item.xml b/res/layout/call_log_list_item.xml index 3748967f6..d925c13b8 100644 --- a/res/layout/call_log_list_item.xml +++ b/res/layout/call_log_list_item.xml @@ -33,9 +33,8 @@ android:fontFamily="sans-serif-medium" android:textColor="?attr/call_log_secondary_text_color" android:textSize="@dimen/call_log_secondary_text_size" - android:paddingTop="@dimen/call_log_day_group_padding" - android:paddingBottom="1dp" - /> + android:paddingTop="@dimen/call_log_day_group_padding_top" + android:paddingBottom="@dimen/call_log_day_group_padding_bottom" /> <!-- Linear layout to separate the primary area containing the contact badge and caller information and the secondary action (call details / play voicemail). --> diff --git a/res/values/dimens.xml b/res/values/dimens.xml index c6a8e9b5a..e5c6795d5 100644 --- a/res/values/dimens.xml +++ b/res/values/dimens.xml @@ -137,7 +137,8 @@ <dimen name="call_log_action_height">44dp</dimen> <!-- Z Translation of expanded call log items. --> <dimen name="call_log_expanded_translation_z">4dp</dimen> - <dimen name="call_log_day_group_padding">15dp</dimen> + <dimen name="call_log_day_group_padding_top">15dp</dimen> + <dimen name="call_log_day_group_padding_bottom">9dp</dimen> <!-- Size of icon for contacts number shortcuts --> <dimen name="search_shortcut_radius">40dp</dimen> |