封闭键盘显示

关闭键盘显示两种方法:法一:InputMethodManager imm (InputMethodManager)getSystemService(Context.INP

关闭键盘显示

两种方法:

法一:

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);          imm.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT, InputMethodManager.HIDE_NOT_ALWAYS);

?法二:

 InputMethodManager imm = (InputMethodManager)                getSystemService(Context.INPUT_METHOD_SERVICE);        imm.hideSoftInputFromWindow(autoView.getWindowToken(), 0);
?