Android - add next and prev button to softkeyboard which appears on click of an edit text in my activity

后端 未结 2 950
予麋鹿
予麋鹿 2021-01-06 08:48

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 tutor

相关标签:
2条回答
  • 2021-01-06 09:07

    You can do it in xml by

    android:imeOptions="actionNext"
    

    or by programatic by

    yourEditText.setImeOptions(EditorInfo.IME_ACTION_NEXT);
    
    0 讨论(0)
  • 2021-01-06 09:13

    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

    0 讨论(0)
提交回复
热议问题