前言:
Android中的软键盘实质就是一个Dialog,在开发的过程中,为了更好的体验,经验需要某个点击事件后隐藏或者显示软键盘,下面就讲我自己遇到的需求汇总下。
1.点击键盘以外的区域,软件盘隐藏。
// 获取点击事件
@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
if (ev.getAction() == MotionEvent.ACTION_DOWN) {
View view = getCurrentFocus();
if (isHideInput(view, ev)) {
HideSoftInput(view.getWindowToken());
}
}
return super.dispatchTouchEvent(ev);
}
// 判定是否需要隐藏
private boolean isHideInput(View v, MotionEvent ev) {
if (v != null && (v instanceof EditText)) {
int[] l = {0, 0};
v.getLocationInWindow(l);
int left = l[0], top = l[1], bottom = top + v.getHeight(), right = left
+ v.getWidth();
if (ev.getX() > left && ev.getX() < right && ev.getY() > top
&& ev.getY() < bottom) {
return false;
} else {
return true;
}
}
return false;
}
// 隐藏软键盘
private void HideSoftInput(IBinder token) {
if (token != null) {
InputMethodManager manager = (InputMethodManager) getSystemService(getApplicationContext().INPUT_METHOD_SERVICE);
manager.hideSoftInputFromWindow(token,
InputMethodManager.HIDE_NOT_ALWAYS);
}
}
只需要将这三个方法放到Activity代码中,即可。