f4369b29ae
* start a new Conversations by pressing mod+space * automatically start searching when pressing keys in StartConversationsActivity * when hitting enter when number of search results == 1 open that conversation
22 lines
819 B
XML
22 lines
819 B
XML
<?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"
|
|
android:paddingLeft="5dp"
|
|
android:paddingRight="5dp" >
|
|
|
|
<EditText
|
|
android:id="@+id/search_field"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:focusable="true"
|
|
android:inputType="textEmailAddress|textNoSuggestions"
|
|
android:imeOptions="actionSearch"
|
|
android:textColor="@color/white"
|
|
android:textColorHint="@color/white70"
|
|
android:hint="@string/search_for_contacts_or_groups"/>
|
|
|
|
</RelativeLayout> |