如何在Ionic 2中隐藏或显示键盘附件栏? 当我使用Ionic 1.3时,这可以通过在平台就绪事件上运行的模块上的app.js文件来完成。通过在一条线下修改。
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
到
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(false);
在Ionic 2 beta11中,我使用了http://ionicframework.com/docs/v2/native/keyboard/ Native Keyboard插件并在app.ts中导入 然后在平台准备好的内部构造函数中,我使用Keyboard的hideKeyboardAccessoryBar方法将属性设置为false。但它不起作用。 配件栏没有出现在键盘上。
// Call any initial plugins when ready
platform.ready().then(() => {
Keyboard.hideKeyboardAccessoryBar(false);
StatusBar.styleDefault();
Splashscreen.hide();
});