diff options
author | Nancy Chen <nancychen@google.com> | 2014-05-23 10:51:04 -0700 |
---|---|---|
committer | Nancy Chen <nancychen@google.com> | 2014-05-23 18:47:04 +0000 |
commit | 70944b4812180a45e40f38e111875675b6441013 (patch) | |
tree | 606e591ed090d83ee6c066f24d38ac9b092392be | |
parent | 29406c8568e69627e1559155290b4673f697d03a (diff) |
[DO NOT MERGE] Add new text color to the contact list search results
Currently contact list search results text color is a default color,
this change adds the text color that will be applied. The attribute
and logical application of the color to the TextView is in a different
change.
Bug: 15118603
Change-Id: I880ff094e377990ada40301aa57cf96a33be0556
(cherry picked from commit 261e079f2d9149814b824bc5f36fb39d03f4f1e9)
-rw-r--r-- | res/values/colors.xml | 2 | ||||
-rw-r--r-- | res/values/styles.xml | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/res/values/colors.xml b/res/values/colors.xml index e0641446f..d43f30a38 100644 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -67,6 +67,8 @@ <!-- Color of the contact name in favorite tiles --> <color name="contact_tile_name_color">#ffffff</color> + <color name="contact_list_name_text_color">#4d4d4d</color> + <!-- Undo dialogue color --> <color name="undo_dialogue_text_color">#4d4d4d</color> diff --git a/res/values/styles.xml b/res/values/styles.xml index 659d5abca..42351b845 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -58,6 +58,7 @@ <item name="contact_browser_list_padding_left">16dp</item> <item name="contact_browser_list_padding_right">0dp</item> <item name="contact_browser_background">@color/contact_list_background_color</item> + <item name="list_item_name_text_color">@color/contact_list_name_text_color</item> <item name="list_item_text_indent">@dimen/contact_browser_list_item_text_indent</item> <!-- CallLog --> <item name="call_log_primary_text_color">#000000</item> |