Skip to content Skip to sidebar Skip to footer

Need Prev,next Button Above Soft Keyboard In Android

I want to show the virtual keyboard with Prev, Next Buttons above the keyboard. When the user clicks prev button, cursor should move to the previous edittext input field and clicki

Solution 1:

For Next Button just add one line to your edit text field

EditTextet1= (EditText)findViewById(R.id.editText1);
    et1.setImeOptions(EditorInfo.IME_ACTION_NEXT);
   EditTextet2= (EditText)findViewById(R.id.editText2);
    et2.setImeOptions(EditorInfo.IME_ACTION_NEXT);

and i m also search about previous Button Please check

Add Button to Android Soft Keyboard

Solution 2:

Simply set imeOptions to actionNext or actionPrev in EditText tag in xml like

<EditTextandroid:imeOptions="actionNext"
/>

And you can also set it programmatically like

yourEditText.setImeOptions(EditorInfo.IME_ACTION_NEXT);

Post a Comment for "Need Prev,next Button Above Soft Keyboard In Android"