android - 处理虚拟键盘输入键行为

时间:2015-08-18 17:53:13

标签: android keyboard virtual-keyboard android-virtual-keyboard

我的布局中有五个edittext。默认情况下,当我点击虚拟键盘显示的任何edittext时,如下所示

enter image description here

是否可以修改回车键的行为?我想按下按键时焦点应转移到下一个编辑文本。键盘应该看起来像

notice the change in enter key and also suggestions are disabled

注意输入键的更改,同时禁用建议。有没有办法实现它?

1 个答案:

答案 0 :(得分:2)

要停用文字建议,请将以下参数添加到EditText

<EditText
    android:inputType="textNoSuggestions"
    (…)
/>

按“输入”后转到下一个字段,在下列参数中添加下一个字段的ID:

<EditText
    android:nextFocusForward="@+id/nextEditTextId"
    (…)
/>

可以找到详细信息here

希望它有所帮助!