我正在开发一个Android自定义键盘。我需要执行搜索操作,根据用户选择的文本字段将光标移动到下一个文本字段操作。如何执行这些操作?
答案 0 :(得分:3)
我得到了答案。
getCurrentInputConnection().performEditorAction(EditorInfo.IME_ACTION_GO);
getCurrentInputConnection().performEditorAction(EditorInfo.IME_ACTION_SEARCH);
getCurrentInputConnection().performEditorAction(EditorInfo.IME_ACTION_NEXT);