Android: jak sprawić, aby przycisk Enter na klawiaturze mówił „Wyszukaj” i obsługiwał kliknięcie?


373

Nie mogę tego rozgryźć. Niektóre aplikacje mają EditText (pole tekstowe), które po dotknięciu i wyświetleniu klawiatury ekranowej ma przycisk „Szukaj” zamiast klawisza Enter.

Chcę to zaimplementować. Jak wdrożyć ten przycisk wyszukiwania i wykryć naciśnięcie przycisku wyszukiwania?

Edycja : znaleziono sposób implementacji przycisku Szukaj; w formacie XML, android:imeOptions="actionSearch"lub w języku Java EditTextSample.setImeOptions(EditorInfo.IME_ACTION_SEARCH);. Ale jak obsłużyć użytkownika, naciskając ten przycisk wyszukiwania? Czy to ma coś wspólnego z android:imeActionId?


3
Pamiętaj, że imeOptions może nie działać na niektórych urządzeniach. Zobacz to i to .
Ermolai,

Odpowiedzi:


904

W układzie ustaw opcje metody wprowadzania do wyszukiwania.

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

W Javie dodaj detektor akcji edytora.

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
W systemie operacyjnym 2.3.6 nie działa, dopóki nie umieszczę atrybutu android: inputType = "text".
thanhbinh84,

41
android: inputType = "text" był również wymagany dla mnie na Androidzie 2.3.5 i 4.0.4
ccyrille

6
@Carol EditTextto podklasa TextView.
howettl,

13
Android: inputType = „tekst” jest także wymagany w wersjach 4.4.0 - 4.4.2 (Android Kitkat).
user818455

12
Tak, android: inputType = "tekst" jest nadal potrzebny w 5.0 :)
lionelmessi

19

Ukryj klawiaturę, gdy użytkownik kliknie opcję wyszukiwania. Dodatek do odpowiedzi Robby Pond

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

7

W xmlpliku umieścić imeOptions="actionSearch"i 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

W Kotlinie

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

Częściowy kod 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

Ta odpowiedź dotyczy TextInputEditText:

W pliku XML układu ustaw opcje metody wprowadzania na wymagany typ. na przykład zrobione .

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

Podobnie możesz ustawić imeOptions na actionSubmit, actionSearch itp

W Javie dodaj detektor akcji edytora.

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

Jeśli używasz kotlin:

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

0

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

Według Java:

 editText.clearFocus();
    InputMethodManager in = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
    in.hideSoftInputFromWindow(searchEditText.getWindowToken(), 0);
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.