Fan Yang
Fan Yang

Reputation: 304

virtual keyboard does not appear in QML-based application on Nokia 5230

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(), 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.

Upvotes: 2

Views: 4208

Answers (1)

blakharaz
blakharaz

Reputation: 2590

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();
        }
    }
}

Upvotes: 3

Related Questions