码迷,mamicode.com
首页 > 其他好文 > 详细

随笔碎片

时间:2014-09-29 20:00:52      阅读:159      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!