Android: як змусити кнопку введення з клавіатури сказати "Пошук" та обробити її клацання?


373

Я не можу цього зрозуміти. У деяких додатках є EditText (текстове поле), яке, коли ви торкаєтесь його, і воно відкриває екранну клавіатуру, на клавіатурі замість клавіші введення є кнопка "Пошук".

Я хочу це здійснити. Як я можу реалізувати цю кнопку пошуку та виявити натискання кнопки Пошук?

Редагувати : дізнався, як реалізувати кнопку Пошук; в XML, android:imeOptions="actionSearch"або в Java, EditTextSample.setImeOptions(EditorInfo.IME_ACTION_SEARCH);. Але як мені обробити користувача, який натискає цю кнопку пошуку? Чи має це щось спільне android:imeActionId?


3
Зверніть увагу, що imeOptions може не працювати на деяких пристроях. Дивіться це і це .
Єрмолай

Відповіді:


904

У макеті встановіть параметри способу введення для пошуку.

<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
На ОС 2.3.6 він не працює, поки я не поставлю атрибут android: inputType = "text".
thanhbinh84

41
android: inputType = "текст" мені також знадобився на Android 2.3.5 та 4.0.4
ccyrille

6
@Carol EditTextє підкласом TextView.
howettl

13
android: inputType = "текст" також потрібен для 4.4.0 - 4.4.2 (Android Kitkat).
користувач818455

12
Так, android: inputType = "текст" все ще потрібен в 5.0 :)
lionelmessi

19

Сховати клавіатуру, коли користувач натискає пошук. Доповнення до відповіді Robby Pond

private void performSearch() {
    editText.clearFocus();
    InputMethodManager in = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
    in.hideSoftInputFromWindow(searchEditText.getWindowToken(), 0);
    //...perform search
}

7

У 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>

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
}

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);
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.