Expand search bar text to vertically fit on small devices.

The text "Search contacts & places" gets cut off because the small size
of certain devices causes the text to spill over to a second line. Use
"wrap_content" for height instead of "search_box_icon_size"

Bug: 18552411
Change-Id: I2263aca687d1d2a431146d057099980970df75f0
diff --git a/res/layout/search_edittext.xml b/res/layout/search_edittext.xml
index d952d2d..93a3c75 100644
--- a/res/layout/search_edittext.xml
+++ b/res/layout/search_edittext.xml
@@ -42,7 +42,7 @@
 
             <TextView
                 android:layout_width="wrap_content"
-                android:layout_height="@dimen/search_box_icon_size"
+                android:layout_height="wrap_content"
                 android:layout_marginLeft="@dimen/search_box_collapsed_text_margin_left"
                 android:textSize="@dimen/search_collapsed_text_size"
                 android:fontFamily="@string/search_font_family"