如何通过Android自定义键盘操作按钮执行搜索操作?

时间:2015-03-16 04:46:55

标签: java android android-softkeyboard custom-keyboard

我正在开发一个Android自定义键盘。我需要执行搜索操作,根据用户选择的文本字段将光标移动到下一个文本字段操作。如何执行这些操作?

1 个答案:

答案 0 :(得分:3)

我得到了答案。

getCurrentInputConnection().performEditorAction(EditorInfo.IME_ACTION_GO);
getCurrentInputConnection().performEditorAction(EditorInfo.IME_ACTION_SEARCH);
getCurrentInputConnection().performEditorAction(EditorInfo.IME_ACTION_NEXT);