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