标签:des style blog color strong sp div c on
1、隐藏软键盘
1 private void hideSoftInput(){ 2 // 隐藏软键盘 3 InputMethodManager inputManager = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE); 4 if (inputManager != null && getActivity().getCurrentFocus()!=null) { 5 inputManager.hideSoftInputFromWindow(getActivity().getCurrentFocus().getWindowToken(), 6 InputMethodManager.HIDE_NOT_ALWAYS); 7 } 8 }
标签:des style blog color strong sp div c on
原文地址:http://www.cnblogs.com/zzb520/p/4000715.html