Issue
i need an help. So this is my code:
TextField {
id: passwordIDText
placeholderText: "Insert text..."
color: "Black"
font.bold: true
font.pixelSize: 21
anchors.top: parent.top
anchors.topMargin: parent.height / 10
anchors.horizontalCenter: parent.horizontalCenter
text: "aaa"
}
I use Android 8 (P20), QT 12.4, Android NDK 20 and Android SDK 28. So when i click the button on the android screen (i'm using 20 to testing), in debug, for get the passwordIDText.text, the field is empty, why ?? But if i set text: "aaa" hard coded, i get passwordIDText.text = "aaa".
The problem look TextField don't get the value inserted by the user. I've inserted 123456 on TextField on screen and click on Button:
MouseArea {
anchors.fill: parent
onClicked: {
var test = passwordIDText.text;
//passwordIDText.text is empty wtf !??
}
}
So someone have the same problem ? On the older Android version TextField works correctly.
My configuration:
Solution
I believe it might be an issue similar to this question, related to predictive text not being committed at the time you need to access it.
Try using passwordIDText.displayText
instead of passwordIDText.text
.
Alternatively you can turn down predictive text input:
inputMethodHints: Qt.ImhNoPredictiveText
Answered By - augre
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.