代码如下:
InputMethodManager imm = (InputMethodManager)getSystemService(SendActivity.this.INPUT_METHOD_SERVICE);
//显示键盘
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)imm.showSoftInput(editText, 0);
//隐藏键盘
imm.hideSoftInputFromWindow(editText.getWindowToken(), 0);