Android - add next and prev button to softkeyboard

2019-02-14 17:08发布

I need to add the NEXT and PREV button to my soft keyboard which appears on clicking on an edit text field in my activity page. Kindly provide me with the pointers for tutorials on implementing this concept.

Thanks in advance.

2条回答
够拽才男人
2楼-- · 2019-02-14 17:52

There is method for EditText

myEditText.setImeOptions(EditorInfo.IME_ACTION_NEXT);

By using above method you can add Next Button to soft keyboard.

You can refer the link for more information For more info

查看更多
手持菜刀,她持情操
3楼-- · 2019-02-14 17:55

You can do it in xml by

android:imeOptions="actionNext"

or by programatic by

yourEditText.setImeOptions(EditorInfo.IME_ACTION_NEXT);
查看更多
登录 后发表回答