如何在Android中单击侧面时隐藏虚拟键盘

时间:2012-10-04 12:28:11

标签: android android-virtual-keyboard

我正在关注this教程。

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

3 个答案:

答案 0 :(得分: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;
}

可能这会帮助你......检查一下

答案 1 :(得分:0)

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0);

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

希望这会对你有所帮助。

答案 2 :(得分:0)

在清单中声明

<activity android:name=".YourActivity"
 android:windowSoftInputMode="stateHidden"/>