只需在activity加下面代码
@Override
public boolean onTouchEvent(MotionEvent event) {
InputMethodManager imm = (InputMethodManager)this.getSystemService(Context.INPUT_METHOD_SERVICE);
//login_auto_account.setCursorVisible(false);
imm.hideSoftInputFromWindow(wifiWord.getWindowToken(), 0);
return super.onTouchEvent(event);
}
其中 wifiWord 为EditText。