所以,我有EditText
一个功能,当你点击外部时,我有一个隐藏键盘的功能EditText
。接下来会发生什么:
- 第一次
EditText
被选中,键盘出现并向上推View
。 - 我取消选择
EditText
(单击 otuside 的任何地方EditText
),键盘进入隐藏状态 - 当我再次单击时
EditText
,键盘会出现,但View
没有拉起,我看不到我的EditText
选择时如何再次向上推该视图EditText
?
这是隐藏软键盘的代码:
@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
View v = getCurrentFocus();
if (v != null &&
(ev.getAction() == MotionEvent.ACTION_UP || ev.getAction() == MotionEvent.ACTION_MOVE) &&
v instanceof EditText &&
!v.getClass().getName().startsWith("android.webkit.")) {
int scrcoords[] = new int[2];
v.getLocationOnScreen(scrcoords);
float x = ev.getRawX() + v.getLeft() - scrcoords[0];
float y = ev.getRawY() + v.getTop() - scrcoords[1];
if (x < v.getLeft() || x > v.getRight() || y < v.getTop() || y > v.getBottom())
hideKeyboard(this);
}
return super.dispatchTouchEvent(ev);
}
和hideKeyboard()
方法
public static void hideKeyboard(Activity activity) {
if (activity != null && activity.getWindow() != null && activity.getWindow().getDecorView() != null) {
InputMethodManager imm = (InputMethodManager) activity.getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(activity.getWindow().getDecorView().getWindowToken(), 0);
}
}