gpt4 book ai didi

android - 在 onEditorAction 中返回 false

转载 作者:太空狗 更新时间:2023-10-29 14:40:03 26 4
gpt4 key购买 nike

TextViewonEditorAction 方法的文档说

Return true if you have consumed the action, else false.

我在网上看到的大多数示例都返回 true。但在这种情况下,软键盘保持打开状态。返回 false 让系统处理软键盘是合法的还是有任何副作用?

private TextView.OnEditorActionListener inputListener = new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
switch (actionId) {
case EditorInfo.IME_ACTION_NEXT:
Toast.makeText(MainActivity.this, "Next", Toast.LENGTH_SHORT).show();
break;
case EditorInfo.IME_ACTION_DONE:
Toast.makeText(MainActivity.this, "Done", Toast.LENGTH_SHORT).show();
break;
}
return false;
}
};

最佳答案

完全OK

文档是指你想做的 Action ,如果你的 Action 成功,返回truefalse 否则。

所以..键盘在这里无关紧要。如果您的键盘有问题,请自行隐藏。

// Check if no view has focus:
View view = this.getCurrentFocus();
if (view != null) {
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
}

关于android - 在 onEditorAction 中返回 false,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49705964/

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