Android: ¿cómo hacer que el botón de entrada del teclado diga "Buscar" y maneje su clic?


373

No puedo entender esto. Algunas aplicaciones tienen un EditText (cuadro de texto) que, cuando lo tocas y aparece el teclado en pantalla, el teclado tiene un botón "Buscar" en lugar de una tecla Intro.

Quiero implementar esto. ¿Cómo puedo implementar ese botón Buscar y detectar la presión del botón Buscar?

Editar : se encontró cómo implementar el botón Buscar; en XML, android:imeOptions="actionSearch"o en Java, EditTextSample.setImeOptions(EditorInfo.IME_ACTION_SEARCH);. Pero, ¿cómo manejo al usuario presionando ese botón Buscar? ¿Tiene algo que ver con android:imeActionId?


3
Tenga en cuenta que imeOptions podría no funcionar en algunos dispositivos. Mira esto y esto .
Ermolai

Respuestas:


904

En el diseño, configure las opciones de método de entrada para buscar.

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

En java agregue el oyente de acción del editor.

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
En os 2.3.6 no funciona hasta que pongo el atributo android: inputType = "text".
thanhbinh84

41
android: inputType = "text" también fue necesario para mí en Android 2.3.5 y 4.0.4
ccyrille

66
@Carol EditTextes una subclase de TextView.
howettl

13
android: inputType = "text" también es necesario para 4.4.0 - 4.4.2 (Android Kitkat).
user818455

12
Sí, android: inputType = "text" todavía se necesita en 5.0 :)
lionelmessi

19

Ocultar el teclado cuando el usuario hace clic en buscar. Adición a la respuesta de Robby Pond

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

7

En xmlarchivo, puesto imeOptions="actionSearch"y 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

En kotlin

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

Código parcial de 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

Esta respuesta es para TextInputEditText:

En el archivo XML de diseño, configure las opciones del método de entrada según el tipo requerido. por ejemplo hecho .

<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"/>

Del mismo modo, también puede establecer imeOptions en actionSubmit, actionSearch, etc.

En java agregue el oyente de acción del editor.

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;
        }
    });

Si estás usando kotlin:

textInputLayout.editText.setOnEditorActionListener { _, actionId, _ ->
    if (actionId == EditorInfo.IME_ACTION_GO) {
        performYourAction()
    }
    true
}

0

por 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" />

Por Java:

 editText.clearFocus();
    InputMethodManager in = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
    in.hideSoftInputFromWindow(searchEditText.getWindowToken(), 0);
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.