gpt4 book ai didi

android - 搜索 View : when click Done button nothing happens

转载 作者:行者123 更新时间:2023-11-29 19:05:43 25 4
gpt4 key购买 nike

此处摘录:

 searchViewEditText.setImeOptions(EditorInfo.IME_ACTION_DONE);
searchViewEditText.setSingleLine(true);

结果,当键盘打开时,按钮 Done 会显示。好的。

这里的结果:

done

但是当我点击完成按钮时,什么也没有发生。我希望键盘会被隐藏。

最佳答案

您可以使用它(设置一个特殊的监听器,以便在对 EditText 执行操作时调用),它适用于 DONE 和 RETURN:

max.setOnEditorActionListener(new OnEditorActionListener() {
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if ((event != null && (event.getKeyCode() == KeyEvent.KEYCODE_ENTER)) || (actionId == EditorInfo.IME_ACTION_DONE)) {
Log.i(TAG,"Enter pressed");
}
return false;
}
});

关于android - 搜索 View : when click Done button nothing happens,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47327001/

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