我是 Android 开发的新手。我的要求是,当我单击 EditText 小部件的外部时,我想隐藏 android 虚拟键盘。请帮忙。
问问题
2620 次
2 回答
5
要隐藏虚拟键盘,您可以执行以下代码:
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0);
只需将该代码放在与父布局相关联的onTouchDown()
方法中即可。OnTouchListener
于 2011-10-03T17:42:52.210 回答
3
只需检查一下。
@Override
public boolean dispatchTouchEvent(MotionEvent event) {
View view = getCurrentFocus();
boolean ret = super.dispatchTouchEvent(event);
if (view instanceof EditText) {
View w = getCurrentFocus();
int scrcoords[] = new int[2];
w.getLocationOnScreen(scrcoords);
float x = event.getRawX() + w.getLeft() - scrcoords[0];
float y = event.getRawY() + w.getTop() - scrcoords[1];
if (event.getAction() == MotionEvent.ACTION_UP
&& (x < w.getLeft() || x >= w.getRight()
|| y < w.getTop() || y > w.getBottom()) ) {
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(getWindow().getCurrentFocus().getWindowToken(), 0);
}
}
return ret;
}
在您在活动中编辑文本的地方覆盖此方法..
于 2012-10-15T06:51:11.327 回答