首页 > 其他 > 详细

随笔碎片

时间:2014-09-29 18:35:23      阅读:219      评论:0      收藏:0      [点我收藏+]

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 }

 

随笔碎片

原文:http://www.cnblogs.com/zzb520/p/4000715.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!