I'm trying to detect the showkeyboard
and hidekeyboard
events in my application running thanks to Cordova 3.4.0 and JQuery Mobile 1.4.2. In the configuration file, the fullscreen attribute is set to true (I need it).
The fact is, in LogCat, I can't read (apprently it's due to the fullscreen mode) :
SoftKeyboardDetect : Ignore this event
Is there any solution to detect these two events? I tried an alternative way by detecting blur and focus events on my input field. It works, but when the keyboard is closed by the back button, those events are not called.
So, I tried to detect the backbutton event, but it doesn't work (http://simonmacdonald.blogspot.fr/2011/05/overriding-back-button-in-phonegap.html).