1

アラート ボックスがある画面が 1 つあります。

このアラート ボックスには、1 つのスピナー コントロールと 2 つのテキスト フィールドがあります。

問題は、テキストフィールドを選択するとキーボードが開きますが、テキストフィールドの外側をクリックするとキーボードを非表示にする必要があります。以下の方法を使用してキーボードを非表示にしましたが、アラートボックスなしで動作しているかどうかにかかわらず、キーボードは非表示になりません。

@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 に答える