如何在android中自动隐藏键盘?

时间:2013-08-07 18:22:51

标签: android android-layout android-softkeyboard

我有一个屏幕,其中有一个警告框。

在此警告框中,有一个微调控件和两个文本字段。

问题是,当我选择任何文本字段时,它会打开键盘,但是当我点击外部文本字段时,我需要隐藏键盘,我使用下面给出的方法来隐藏键盘但它不会隐藏键盘是否在没有警报的情况下工作框。

@Override
public boolean dispatchTouchEvent(MotionEvent event) {
    // TODO Auto-generated method stub
    View view = getCurrentFocus();
    boolean ret = super.dispatchTouchEvent(event);

    if (view instanceof EditText) {
        View w = getCurrentFocus();
        int scrcoords[] = new int[2];
        w.getLocationOnScreen(scrcoords);
        float x = event.getRawX() + w.getLeft() - scrcoords[0];
        float y = event.getRawY() + w.getTop() - scrcoords[1];

        if (event.getAction() == MotionEvent.ACTION_UP
                && (x < w.getLeft() || x >= w.getRight() || y < w.getTop() || y > w
                        .getBottom())) {
            InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
            imm.hideSoftInputFromWindow(getWindow().getCurrentFocus()
                    .getWindowToken(), 0);
        }
    }
    return ret;
}

任何人都可以告诉我为什么它只会产生警报框的问题。

请帮帮我。

1 个答案:

答案 0 :(得分:0)

试试这段代码:

public void showSoftKeyboard() {
    try {
        InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Activity.INPUT_METHOD_SERVICE);
        inputMethodManager.toggleSoftInputFromWindow(getCurrentFocus().getWindowToken(), InputMethodManager.SHOW_FORCED, 0);
    } catch (Exception e) {
        e.printStackTrace();
    }
 }

public void hideSoftKeyboard() {
    try {
        InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Activity.INPUT_METHOD_SERVICE);
        inputMethodManager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0);
    } catch (Exception e) {
        e.printStackTrace();
    }

}