2014-10-22 16:38:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-01-20 13:53:47 +00:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
2018-04-02 07:51:45 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:addStatesFromChildren="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:gravity="center"
|
|
|
|
android:paddingLeft="5dp"
|
|
|
|
android:paddingRight="5dp">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/search_field"
|
2018-04-02 07:51:45 +00:00
|
|
|
style="@style/Widget.Conversations.SearchView"
|
2015-01-20 13:53:47 +00:00
|
|
|
android:layout_width="match_parent"
|
2014-10-22 16:38:44 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:focusable="true"
|
2018-04-02 07:51:45 +00:00
|
|
|
android:hint="@string/search_for_contacts_or_groups"
|
2016-05-12 16:49:54 +00:00
|
|
|
android:imeOptions="actionSearch"
|
2018-04-02 07:51:45 +00:00
|
|
|
android:inputType="textEmailAddress|textNoSuggestions"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2015-01-20 13:53:47 +00:00
|
|
|
</RelativeLayout>
|