1<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="wrap_content"
5 android:addStatesFromChildren="true"
6 android:focusable="true"
7 android:gravity="center"
8 android:paddingLeft="5dp"
9 android:paddingRight="5dp" >
10
11 <EditText
12 android:id="@+id/search_field"
13 android:layout_width="match_parent"
14 android:layout_height="wrap_content"
15 android:focusable="true"
16 android:inputType="textEmailAddress|textNoSuggestions"
17 android:imeOptions="actionSearch"
18 android:textColor="@color/white"
19 android:textColorHint="@color/white70"
20 android:hint="@string/search_for_contacts_or_groups"/>
21
22</RelativeLayout>