收起软键盘

InputMethodManager imm = (InputMethodManager) getSystemService(
                          Context.INPUT_METHOD_SERVICE);
                    if (imm != null) {
                        imm.hideSoftInputFromWindow(getWindow().getDecorView()
                        .getWindowToken(),0);
                    }

你可能感兴趣的:(收起软键盘)