I have a QML-based application which is deployed on my Nokia 5230 phone, there are several TextInput components, when the component takes the input focus, input method status indicator changed, but virtual keyboard does not appear.
My application is full-screen displayed by calling QDeclarativeView::showFullScreen开发者_StackOverflow中文版(), I have tried 4 different input methods including the official AknFEP, all have the same problem.
Did I miss something?
BTW, it works fine on desktop or in Qt simulator.
Which version of Qt are you using?
Did you try opening the VKB manually?
TextInput {
id: textInput
activeFocusOnPress: false
MouseArea {
anchors.fill: parent
onClicked: {
textInput.forceActiveFocus();
textInput.openSoftwareInputPanel();
}
}
}
精彩评论