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

点击屏幕其他地方让软键盘消失

时间:2015-02-27 16:46:30      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:

/*

在获取不到焦点的时候隐藏软键盘

*/

@Override
public boolean onTouchEvent(MotionEvent event) {
// TODO Auto-generated method stub
if (event.getAction() == MotionEvent.ACTION_DOWN) {
if (getCurrentFocus() != null
&& getCurrentFocus().getWindowToken() != null) {
SoftInputMethodManager.hide(this);
}
}
return super.onTouchEvent(event);
}

 

public class SoftInputMethodManager {
/**
* 隐藏软键盘
*
* @param context
*/
public static void hide(Activity context) {
InputMethodManager imm = (InputMethodManager) context
.getSystemService(Context.INPUT_METHOD_SERVICE);
if (imm != null) {
imm.hideSoftInputFromWindow(context.getWindow().getDecorView()
.getWindowToken(), 0);
}
}

}

点击屏幕其他地方让软键盘消失

标签:

原文地址:http://www.cnblogs.com/iyuge/p/4303364.html

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