gpt4 book ai didi

android - 我可以在 android :imeOptions ="actionSearch"? 上写我自己的事件吗

转载 作者:太空狗 更新时间:2023-10-29 15:39:57 26 4
gpt4 key购买 nike

我正在使用 android:imeOptions="actionSearch"

在 editText 中,我的问题是如果用户按下软键盘上的搜索按钮,我可以编写自己的事件吗?

实际上我想执行软键盘搜索按钮的功能,类似于我们在 android Activity 中使用的按钮。

我们将不胜感激。

最佳答案

这是我最终使用的:

EditText SearchEditText = (EditText) findViewById(R.id.txtMapSearch);
SearchEditText.setOnEditorActionListener(new OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView arg0, int arg1, KeyEvent arg2) {
// TODO Auto-generated method stub
if (arg1 == EditorInfo.IME_ACTION_SEARCH) {
// search pressed and perform your functionality.
}
return false;
}
});

关于android - 我可以在 android :imeOptions ="actionSearch"? 上写我自己的事件吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2590597/

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