InputMethodManager imm = (InputMethodManager)this.getSystemService(Service.INPUT_METHOD_SERVICE);
用于隐藏键盘
imm.hideSoftInputFromWindow(ed.getWindowToken(),0);
用于显示键盘
imm.showSoftInput(ed,0);
其中ed是EditText ..