EditText 关闭软键盘 .
1、EditText有焦点(focusable为true)阻止输入法弹出
InputMethodManager imm = (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(editText.getWindowToken(), 0);
转自:http://blog.csdn.net/kmyhy/archive/2010/11/18/6018865.aspx