qt - virtual keyboard does not appear in QML-based application on Nokia 5230 -
i have qml-based application deployed on nokia 5230 phone, there several textinput components, when component takes input focus, input method status indicator changed, virtual keyboard not appear.
my application full-screen displayed calling qdeclarativeview::showfullscreen(), have tried 4 different input methods including official aknfep, have same problem.
did miss something?
btw, works fine on desktop or in qt simulator.
which version of qt using?
did try opening vkb manually?
textinput { id: textinput activefocusonpress: false mousearea { anchors.fill: parent onclicked: { textinput.forceactivefocus(); textinput.opensoftwareinputpanel(); } } }
Comments
Post a Comment