Android - add the next and prev button to the on-screen keyboard that appears when I click on editable text in my activity

I need to add the NEXT and PREV button to my soft keyboard, which appears when I click on the edit text box on my activity page. Please provide me with pointers to tutorials on the implementation of this concept.

Thanks in advance.

+4
source share
2 answers

You can do it in xml

android:imeOptions="actionNext" 

or programmatically

 yourEditText.setImeOptions(EditorInfo.IME_ACTION_NEXT); 
+5
source

There is a method for EditText

 myEditText.setImeOptions(EditorInfo.IME_ACTION_NEXT); 

Using the method described above, you can add the following button to the soft keyboard.

You can refer to the link for more information. More ...

0
source

Source: https://habr.com/ru/post/1389986/


All Articles