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 style="@style/Widget.Conversations.SearchView"
14 android:layout_width="match_parent"
15 android:layout_height="wrap_content"
16 android:focusable="true"
17 android:hint="@string/search_for_contacts_or_groups"
18 android:imeOptions="actionSearch"
19 android:inputType="textEmailAddress|textNoSuggestions"/>
20
21</RelativeLayout>