Virtual keyboard doesn't go away in my app. Is there a way in the code level to say to close the virtual keyboard? In N950 and N9?
Virtual keyboard doesn't go away in my app. Is there a way in the code level to say to close the virtual keyboard? In N950 and N9?
For me if i press/touch in (my) application anywhere outside virtual keyboard, it automatically disappear. And i think it's default behavior of device. Have you tried to press outside virtual keyboard?
Hi,
Is it a QML, QWebkit or QWidget based?
There is a bug for all of those and a workaround only for the first two.
IIRC this topic has been discussed in the Qt Quick sub-forum.
Just slide it down as shown at :
http://nokiamobileblog.com/nokia-n9-tips-tricks/
--
http://rzr.online.fr/q/harmattan
http://rzr.online.fr/q/redak# redak-0.4.0-0 : #FreE #TexT #EditoR : #Qt #QmL ported to #SymbiaN #BellE (#E7) and !n950club #n9 #MeeGo, test
Hi,
Hope the below helps to programmatically close the VKB
TextField {
Keys.onReturnPressed: {
platformCloseSoftwareInputPanel()
}
}
Last edited by kusumk; 2012-02-13 at 10:02.
Hi,
http://harmattan-dev.nokia.com/docs/.../qml-keys.html
For various keys you can check the above link.