aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/layout/actionview_search.xml
blob: 3ad69c301f26441b9948c4bc393ab23a2c411d98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:addStatesFromChildren="true"
    android:focusable="true"
    android:gravity="center">

    <EditText
        android:id="@+id/search_field"
        style="@style/Widget.Conversations.SearchView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:focusable="true"
        android:imeOptions="flagNoExtractUi|actionSearch"
        android:inputType="textEmailAddress|textNoSuggestions" />

</RelativeLayout>