Skip to content Skip to sidebar Skip to footer

How To Get Keyboard With Next, Previous And Done Buttons At The Top Of Keyboard In Android

In my application, I want to provide the functionality similar to Next, Previous and Done button at the top of keyboard. It is somewhat similar to this Please let me know how can

Solution 1:

The standard Android way would be to provide an input method action with imeOptions. With the standard keyboard this will change the bottom right virtual keyboard button to the specified action. There's little point in trying to mimic iOS input behavior with the buttons above.

Solution 2:

Do you want to just put the layout above the keyboard,so as to stop next,previous,etc button when keyboard is displayed. If so,you can try adding below code inside your activity in android manifest,

android:windowSoftInputMode="adjustResize"

If you are looking for something else,then please show your xml code of the same.

Post a Comment for "How To Get Keyboard With Next, Previous And Done Buttons At The Top Of Keyboard In Android"