gpt4 book ai didi

android - 如何避免单击按钮时调用 dispatchTouchEvent

转载 作者:行者123 更新时间:2023-11-29 01:36:08 25 4
gpt4 key购买 nike

在我的 Activity 中,我有一个 EditText 和一个 Button。我覆盖了 dispatchTouchEvent 以在单击屏幕的其他区域而不是 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;
}

问题是,每次我点击Button,都会调用dispatchTouchEvent,所以软键盘会消失,这不是我想要的。我不想在单击 Button 时隐藏键盘。我在想是否可以在单击 Button 时避免调用 dispatchTouchEvent

我们将不胜感激任何反馈。

最佳答案

您不需要覆盖 dispatchTouch 事件。只需将您 Activity 的 onClickListener 设置为与 Button 和 EditText 相同,然后调用这些方法以在 switch case 的“默认”情况下隐藏软键盘。

switch (v.getId())
{
case R.id.button:
whateverButtonDoes();
break;
case R.id.editText:
whateverEditTextDoes();
break;
default:
hideKeyboard();
break;
}

我强烈建议您定义一种方法来隐藏键盘以实现清晰的编码标准。您也可以在其他地方使用它。

关于android - 如何避免单击按钮时调用 dispatchTouchEvent,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27948059/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com