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
You can do it in xml by
android:imeOptions="actionNext"
or by programatic by
yourEditText.setImeOptions(EditorInfo.IME_ACTION_NEXT);
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