1

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

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

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

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

任何人都可以告诉我为什么它只用警报框创建问题。

请帮我。

4

1 回答 1

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

}
于 2013-12-19T03:09:52.360 回答