android to hide the keybord

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

  The view is which u clicked component.

原文地址:https://www.cnblogs.com/howlaa/p/4139612.html