There is an EditText. Here is his code:
<EditText android:id="@+id/editSearch" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint = "Поиск" android:textColorHint="#c0c0c0" android:textColor="#fff" android:paddingRight="22dp" android:paddingLeft="8dp" android:paddingTop="13dp" android:drawableRight="@drawable/search" android:paddingBottom="16dp" android:imeOptions="actionSearch" android:inputType="text" android:maxLines="1" android:layout_toEndOf="@+id/backButton" /> Call the keyboard, enter something, poke the search button (imeOptions = "actionSearch"), the focus from edittext disappears, and the keyboard changes to the usual one (with the enter button, not the search), instead of a chasm. Why is this happening and how to fix it?