27

当我的用户按下Enter虚拟 android “用户验证条目!” 键盘 我的键盘保持可见!(为什么?)

这是我的Java代码...

private void initTextField() {
    entryUser = (EditText) findViewById(R.id.studentEntrySalary);
    entryUser.setOnKeyListener(new OnKeyListener() {
        public boolean onKey(View v, int keyCode, KeyEvent event) {
            if (event.getAction() == KeyEvent.ACTION_DOWN) {
                switch (keyCode) {
                    case KeyEvent.KEYCODE_DPAD_CENTER:
                    case KeyEvent.KEYCODE_ENTER:
                        userValidateEntry();
                        return true;
                }
            }

          return true;
        }
    });
}

private void userValidateEntry() {
    System.out.println("user validate entry!");
}

...这里是我的观点

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content">
            <EditText android:id="@+id/studentEntrySalary" android:text="Foo" android:layout_width="wrap_content" android:layout_height="wrap_content" />
 </LinearLayout>

也许我的虚拟设备有问题?

4

5 回答 5

68

这应该这样做:

yourEditTextHere.setOnEditorActionListener(new OnEditorActionListener() {

        @Override
        public boolean onEditorAction(TextView v, int actionId,
                KeyEvent event) {
            if (event != null&& (event.getKeyCode() == KeyEvent.KEYCODE_ENTER)) {
                InputMethodManager in = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);

                // NOTE: In the author's example, he uses an identifier
                // called searchBar. If setting this code on your EditText
                // then use v.getWindowToken() as a reference to your 
                // EditText is passed into this callback as a TextView

                in.hideSoftInputFromWindow(searchBar
                        .getApplicationWindowToken(),
                        InputMethodManager.HIDE_NOT_ALWAYS);
               userValidateEntry();
               // Must return true here to consume event
               return true;

            }
            return false;
        }
    });
于 2010-03-12T17:55:42.180 回答
18

保留 singleLine="true" 并将 imeOptions="actionDone" 添加到 EditText。然后在 OnEditorActionListener 检查 actionId == EditorInfo.IME_ACTION_DONE,像这样(但将其更改为您的实现):

if (actionId == EditorInfo.IME_ACTION_DONE) {

                if ((username.getText().toString().length() > 0)
                        && (password.getText().toString().length() > 0)) {
                    // Perform action on key press
                    InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
                    imm.hideSoftInputFromWindow(username.getWindowToken(),
                            0);
                    doLogin();
                }
            }
于 2012-01-11T07:56:30.790 回答
5

如果您将文本框设为单行(我相信该属性在布局 xml 文件中称为 SingleLine),它将在输入时退出键盘。

给你:http: //developer.android.com/reference/android/R.styleable.html#TextView_singleLine

于 2010-03-12T17:34:02.910 回答
1

我正在创建一个扩展 AutoCompleteTextView 的自定义组件,如下例所示:

public class PortugueseCompleteTextView extends AutoCompleteTextView {
...
@Override
public boolean onKeyPreIme(int keyCode, KeyEvent event) {
    if (event != null &&  (event.getKeyCode() == KeyEvent.KEYCODE_BACK)) {
        InputMethodManager inputManager =
                (InputMethodManager) getContext().
                        getSystemService(Context.INPUT_METHOD_SERVICE);
        inputManager.hideSoftInputFromWindow(
                this.getWindowToken(),
                InputMethodManager.HIDE_NOT_ALWAYS);
    }
    return super.onKeyPreIme(keyCode, event);
}

我在 AlertDialog.Builder 中使用此代码,但可以用于 Activity。

于 2016-10-05T14:33:27.310 回答
0

只需在您的编辑文本中添加这一行。

android:imeOptions="actionDone"'

您可以在单击键盘完成按钮时指定下一个编辑文本 ID 以移动到该编辑文本。

于 2018-06-19T15:15:51.993 回答