我完全不知道在 EditText 控件上为 imeOption 设置“actionSearch”实现动作侦听器。
我已经查看了执行此操作的Android 文档,但在 Mono 中找不到对它的支持。我尝试实现 TextView.IOnEditorActionListener,但找不到要覆盖的 OnEditorAction 方法。
这是我正在尝试使用的代码:
EditText editText = (EditText) findViewById(R.id.search);
editText.setOnEditorActionListener(new OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
boolean handled = false;
if (actionId == EditorInfo.IME_ACTION_SEND) {
sendMessage();
handled = true;
}
return handled;
}
});
一切都很好,直到我尝试设置动作侦听器,我找不到 Mono 中的 OnEditorActionListener ,在它的位置它要求 TextView.IOnEditorActionListener 并且我找不到任何显示您将如何在 Mono 中处理此问题的内容。是不支持此功能,还是有办法在 Mono for Android 应用程序中获得此功能?
感谢您提供的任何帮助。