在软键盘上使用“ENTER”键而不是单击按钮

时间:2010-12-15 15:05:24

标签: android keyboard android-softkeyboard

您好 我有一个搜索EditText并搜索Button。当我输入搜索到的文本时,我想在软键盘上使用 ENTER 键而不是搜索Button来激活搜索功能。

提前感谢您的帮助。

8 个答案:

答案 0 :(得分:140)

您可以在OnKeyListener上设置EditText

以下是我自己代码中的示例。我有一个名为EditText的{​​{1}},当点击回车键或d-pad时,它会调用函数addCourseText

addCourseFromTextBox

答案 1 :(得分:36)

<EditText
    android:id="@+id/search"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:hint="@string/search_hint"
    android:inputType="text"
    android:imeOptions="actionSend" />

然后,您可以通过为EditText元素定义TextView.OnEditorActionListener来侦听操作按钮上的按下。在侦听器中,响应EditorInfo类中定义的相应IME操作ID,例如IME_ACTION_SEND。例如:

EditText editText = (EditText) findViewById(R.id.search);
editText.setOnEditorActionListener(new OnEditorActionListener() {
    @Override
    public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
        boolean handled = false;
        if (actionId == EditorInfo.IME_ACTION_SEND) {
            sendMessage();
            handled = true;
        }
        return handled;
    }
});

来源:https://developer.android.com/training/keyboard-input/style.html

答案 2 :(得分:25)

可能是您可以在EditText中添加一个属性,如下所示:

android:imeOptions="actionSearch"

答案 3 :(得分:5)

为EditText添加一个属性 android:imeOptions =“actionSearch”

这是执行此功能的最佳方式

和imeOptions也有一些其他值,如“go”,“next”,“done”等。

答案 4 :(得分:1)

我们也可以使用Kotlin lambda

editText.setOnKeyListener { _, keyCode, keyEvent ->
        if (keyEvent.action == KeyEvent.ACTION_DOWN && keyCode == KeyEvent.KEYCODE_ENTER) {
            Log.d("Android view component", "Enter button was pressed")
            return@setOnKeyListener true
        }
        return@setOnKeyListener false
    }

答案 5 :(得分:0)

为避免焦点前进到下一个可编辑字段(如果有的话),您可能希望忽略按键事件,但处理键盘事件。我也更喜欢先在keyCode上进行过滤,假设它的效率稍高一些。顺便说一句,请记住,返回true意味着您已经处理了事件,因此没有其他侦听器会这样做。无论如何,这是我的版本。

ETFind.setOnKeyListener(new OnKeyListener()
{
    public boolean onKey(View v, int keyCode, KeyEvent event)
    {
        if (keyCode ==  KeyEvent.KEYCODE_DPAD_CENTER
        || keyCode ==  KeyEvent.KEYCODE_ENTER) {

            if (event.getAction() == KeyEvent.ACTION_DOWN) {
                // do nothing yet
            } else if (event.getAction() == KeyEvent.ACTION_UP) {
                        findForward();      
            } // is there any other option here?...

            // Regardless of what we did above,
            // we do not want to propagate the Enter key up
            // since it was our task to handle it.
            return true;

        } else {
            // it is not an Enter key - let others handle the event
            return false;
        }
    }

});

答案 6 :(得分:0)

这是我的一个应用程序如何处理

的示例
 //searching for the Edit Text in the view    
    final EditText myEditText =(EditText)view.findViewById(R.id.myEditText);
        myEditText.setOnKeyListener(new View.OnKeyListener() {
            public boolean onKey(View v, int keyCode, KeyEvent event) {
                 if (event.getAction() == KeyEvent.ACTION_DOWN)
                      if ((keyCode == KeyEvent.KEYCODE_DPAD_CENTER) ||
                             (keyCode == KeyEvent.KEYCODE_ENTER)) {
                                //do something
                                //true because you handle the event
                                return true;
                               }
                       return false;
                       }
        });

答案 7 :(得分:0)

实现此目的的最新方法是:

将此添加到XML的EditText中

android:imeOptions="actionSearch"

然后在您的活动/片段中

EditText.setOnEditorActionListener { _, actionId, _ ->
    if (actionId == EditorInfo.IME_ACTION_SEARCH) {
        // Do what you want here
        return@setOnEditorActionListener true
    }
    return@setOnEditorActionListener false
}