summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorTyler Gunn <tgunn@google.com>2014-03-10 08:43:19 -0700
committerJay Shrauner <shrauner@google.com>2014-03-10 23:09:01 +0000
commit1f51f2bb9fc93a94c9dcccbc3a2c5d443ae2c797 (patch)
tree3f8c15d7349fb15185db5d20728cfbdd9da04e7f /res
parentf879638042b12a86c0da737dd86c4e05973eeb6f (diff)
downloadandroid_packages_apps_Dialer-1f51f2bb9fc93a94c9dcccbc3a2c5d443ae2c797.tar.gz
android_packages_apps_Dialer-1f51f2bb9fc93a94c9dcccbc3a2c5d443ae2c797.tar.bz2
android_packages_apps_Dialer-1f51f2bb9fc93a94c9dcccbc3a2c5d443ae2c797.zip
Correcting issue where text entered by user in searchbox is gray. DO NOT MERGE
Only the hint text should be gray. Bug: 13387408 Change-Id: I88bb3bc156e786ca6ccf19a9faae7d5abb3936f1 (cherry picked from commit a6dee4555f99264ff3727625db0e8f239ddde340)
Diffstat (limited to 'res')
-rw-r--r--res/layout/dialtacts_activity.xml1
-rw-r--r--res/values/colors.xml6
2 files changed, 5 insertions, 2 deletions
diff --git a/res/layout/dialtacts_activity.xml b/res/layout/dialtacts_activity.xml
index 6eea63350..0f805647f 100644
--- a/res/layout/dialtacts_activity.xml
+++ b/res/layout/dialtacts_activity.xml
@@ -64,6 +64,7 @@
android:textSize="@dimen/search_text_size"
android:fontFamily="@string/search_font_family"
android:textColor="@color/searchbox_text_color"
+ android:textColorHint="@color/searchbox_hint_text_color"
android:inputType="textFilter"/>
<ImageView
android:id="@+id/search_close_button"
diff --git a/res/values/colors.xml b/res/values/colors.xml
index 2fb59ed81..e9730eab9 100644
--- a/res/values/colors.xml
+++ b/res/values/colors.xml
@@ -70,8 +70,10 @@
<!-- Background color of the search box -->
<color name="searchbox_background_color">#ffffff</color>
- <!-- Text color of the search box -->
- <color name="searchbox_text_color">#d3d3d3</color>
+ <!-- Text color of the search box text as entered by user -->
+ <color name="searchbox_text_color">#000000</color>
+ <!-- Text color of the search box hint text -->
+ <color name="searchbox_hint_text_color">#d3d3d3</color>
<!-- Color of the contact name in favorite tiles -->
<color name="contact_tile_name_color">#ffffff</color>