Android: как заставить клавиатуру ввода нажимать кнопку «Поиск» и обрабатывать ее нажатие?

373

Я не могу понять это. В некоторых приложениях есть EditText (текстовое поле), которое, когда вы касаетесь его и вызывает экранную клавиатуру, на клавиатуре вместо кнопки ввода появляется кнопка «Поиск».

Я хочу реализовать это. Как я могу реализовать эту кнопку поиска и обнаружить нажатие кнопки поиска?

Редактировать : нашел, как реализовать кнопку Поиск; в XML android:imeOptions="actionSearch"или в Java EditTextSample.setImeOptions(EditorInfo.IME_ACTION_SEARCH);. Но как мне обработать пользователя нажатием этой кнопки поиска? Это как-то связано android:imeActionId?

Ricket
источник
3
Обратите внимание, что imeOptions может не работать на некоторых устройствах. Смотрите это и это .
Ермолай

Ответы:

905

В макете задайте параметры метода ввода для поиска.

<EditText
    android:imeOptions="actionSearch" 
    android:inputType="text" />

В Java добавьте слушатель действия редактора.

editText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
    @Override
    public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
        if (actionId == EditorInfo.IME_ACTION_SEARCH) {
            performSearch();
            return true;
        }
        return false;
    }
});
Робби Понд
источник
82
На OS 2.3.6 это не работает, пока я не поставлю атрибут android: inputType = "text".
thanhbinh84
41
android: inputType = "text" также требовалось для меня на Android 2.3.5 и 4.0.4
ccyrille
6
@Carol EditText- это подкласс TextView.
Howettl
13
android: inputType = "text" также требуется для 4.4.0 - 4.4.2 (Android Kitkat).
user818455
12
Да, android: inputType = "text" все еще требуется в 5.0 :)
lionelmessi
19

Скрыть клавиатуру, когда пользователь нажимает кнопку поиска. Дополнение к ответу Робби Понд

private void performSearch() {
    editText.clearFocus();
    InputMethodManager in = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
    in.hideSoftInputFromWindow(searchEditText.getWindowToken(), 0);
    //...perform search
}
kaMChy
источник
8

В xmlфайле, поставить imeOptions="actionSearch"и inputType="text", maxLines="1":

<EditText
    android:id="@+id/search_box"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:hint="@string/search"
    android:imeOptions="actionSearch"
    android:inputType="text"
    android:maxLines="1" />
Браж Бхушан Сингх
источник
5

В котлине

evLoginPassword.setOnEditorActionListener { _, actionId, _ ->
    if (actionId == EditorInfo.IME_ACTION_DONE) {
        doTheLoginWork()
    }
    true
}

Частичный XML-код

 <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
       <android.support.design.widget.TextInputLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"

            android:layout_marginBottom="8dp"
            android:layout_marginTop="8dp"
            android:paddingLeft="24dp"
            android:paddingRight="24dp">

            <EditText
                android:id="@+id/evLoginUserEmail"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:hint="@string/email"
                android:inputType="textEmailAddress"
                android:textColor="@color/black_54_percent" />
        </android.support.design.widget.TextInputLayout>

        <android.support.design.widget.TextInputLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="8dp"
            android:layout_marginTop="8dp"
            android:paddingLeft="24dp"
            android:paddingRight="24dp">

            <EditText
                android:id="@+id/evLoginPassword"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:hint="@string/password"
                android:inputType="textPassword"
                android:imeOptions="actionDone"
                android:textColor="@color/black_54_percent" />
        </android.support.design.widget.TextInputLayout>
</LinearLayout>
Shaon
источник
1

Этот ответ для TextInputEditText:

В XML-файле макета задайте параметры метода ввода для требуемого типа. например сделано .

<com.google.android.material.textfield.TextInputLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <com.google.android.material.textfield.TextInputEditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:imeOptions="actionGo"/>

Точно так же вы можете также установить imeOptions для actionSubmit, actionSearch и т. Д.

В Java добавьте слушатель действия редактора.

textInputLayout.getEditText().setOnEditorActionListener(new 

    TextView.OnEditorActionListener() {
        @Override
        public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
            if (actionId == EditorInfo.IME_ACTION_GO) {
                performYourAction();
                return true;
            }
            return false;
        }
    });

Если вы используете kotlin:

textInputLayout.editText.setOnEditorActionListener { _, actionId, _ ->
    if (actionId == EditorInfo.IME_ACTION_GO) {
        performYourAction()
    }
    true
}
iAmSauravSharan
источник
0

по XML:

 <EditText
        android:id="@+id/search_edit"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="@string/search"
        android:imeOptions="actionSearch"
        android:inputType="text" />

По Java:

 editText.clearFocus();
    InputMethodManager in = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
    in.hideSoftInputFromWindow(searchEditText.getWindowToken(), 0);
исключение нулевого указателя
источник