0

我正在关注教程。

该代码适用于一个editText. 但现在我有很多(近 10 个)EditText字段。如果我对每个字段重复此代码,代码将很长。任何人都可以让我知道在任何字段之外单击时如何禁用虚拟键盘吗?

4

3 回答 3

5
@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-11T05:32:56.573 回答
0

在你的清单中声明

<activity android:name=".YourActivity"
 android:windowSoftInputMode="stateHidden"/>
于 2012-10-04T12:45:21.353 回答
0
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0);

只需使用此代码将键盘隐藏在绑定到父布局的 OnTouchListener 的 onTouchDown() 方法中。

希望这对您有所帮助。

于 2012-10-04T12:37:00.390 回答