cordova-plugin-android-keyboard
v1.0.13
Published
<!-- [](https://github.com/SinGlEBW/cordova-plugin-android-keyboard.git) -->
Maintainers
Readme
Cordova Plugin AndroidKeyboard
Installation
This installation method requires cordova 10.0+
cordova plugin add cordova-plugin-android-keyboardAndroid Example
Use plugin cordova-plugin-statusbar and use overlaysWebView = true and config.xml ;
If you need an event to open and close the keyboard, then use:
if (cordova.platformId == 'android') {
let AndroidKeyboard = cordova.plugins.AndroidKeyboard;
AndroidKeyboard.on('keyboard', (data) => {
console.dir(data); //data = { isShow: boolean; height: number; }
});
//remove event
AndroidKeyboard.off('keyboard');
}