Split screen keyboard in Qt 4.7.4
Qt 4.7.4 documentation states this "Text input improvements – Supp开发者_如何学Goort for split-screen virtual keyboard"
But, I couldn't find any information on how to use it in QML?
Can someone please help?
Thanks.
You can enable the splitscreen keyboard with an ApplicationAttribute
Somewhere in your main.cpp you have to call
QCoreApplication::setAttribute(Qt::AA_S60DisablePartialScreenInputMode, false)
精彩评论