diff options
author | Tyler Gunn <tgunn@google.com> | 2014-03-10 23:16:25 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-03-10 23:16:25 +0000 |
commit | 34c0a6d47493b03ed75eda159efd7f0882ff4a1d (patch) | |
tree | 7e6635bfe776f50629e9adade8118c567e1ec76c /res | |
parent | 861b971fe86685a0c616bcdeee5289d30d455ad3 (diff) | |
parent | bd8a362a5bc1fdb224181cce20daa026e71e2667 (diff) |
am bd8a362a: am 1f51f2bb: Correcting issue where text entered by user in searchbox is gray. DO NOT MERGE
* commit 'bd8a362a5bc1fdb224181cce20daa026e71e2667':
Correcting issue where text entered by user in searchbox is gray. DO NOT MERGE
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/dialtacts_activity.xml | 1 | ||||
-rw-r--r-- | res/values/colors.xml | 6 |
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> |