How to add Next button in Ionic soft keyboard plugin

gangatharan picture gangatharan · Aug 24, 2015 · Viewed 8.1k times · Source

We are developing the android application using the Ionic framework.

When we click on the input text box we need to show next button instead of the return button. In the native Android API, we have options to show the next button. But in the Ionic frame work we don't have options to show the next button.

How can I add the next button in the soft keyboard when input text box field is selected?

Answer

user6032296 picture user6032296 · Mar 8, 2016
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(false);//show the keyboard accessory bar with the next, previous and done buttons
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);//hide the keyboard accessory bar with the next, previous and done buttons

refer to ionic-plugin-keyboard document, these functions only support ios platform, so they have no effect on android.