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



我正在学习本教程。

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

@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;
}

也许这会帮助你..检查一下

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

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

希望这对您有所帮助。

在清单中声明

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

相关内容

  • 没有找到相关文章

最新更新