android设置隐藏键盘按下输入(在EditText中)

时间:2010-03-12 17:24:15

标签: android android-softkeyboard

当我的用户在虚拟机器人“用户验证条目”上按 Enter 时键盘我的键盘保持可见! (为什么?)

这是我的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>

我的虚拟设备上可能有问题?

5 个答案:

答案 0 :(得分: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;
        }
    });

答案 1 :(得分: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();
                }
            }

答案 2 :(得分:5)

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

在这里:http://developer.android.com/reference/android/R.styleable.html#TextView_singleLine

答案 3 :(得分: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。

答案 4 :(得分:0)

只需在编辑文本中添加此行即可。

android:imeOptions="actionDone"'

您可以单击键盘完成按钮来指定下一个编辑文本ID,以移至该编辑文本。