public static void collapseSoftInputMethod(Context context, View v) { if (v != null) { InputMethodManager imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(v.getWindowToken(), 0); } }
传入上下文,传入软键盘的布局就哦了
原文:http://www.cnblogs.com/lucky-star-star/p/4353078.html