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
9 <EditText
10 android:id="@+id/search_field"
11 android:layout_width="match_parent"
12 android:layout_height="wrap_content"
13 android:focusable="true"
14 android:imeOptions="flagNoExtractUi|actionDone"
15 android:inputType="textPersonName"/>
16
17</RelativeLayout>