Android - add next and prev button to softkeyboard

2019-02-14 17:36发布

问题:

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.

回答1:

You can do it in xml by

android:imeOptions="actionNext"

or by programatic by

yourEditText.setImeOptions(EditorInfo.IME_ACTION_NEXT);


回答2:

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