text Area and text field's "text" value will updated only after pressing enter or space button in android ?
-
Hi All,
I was testing my android application and i found a strange behavior in textArea and textField ,where i have to explicitly press enter key/space key at the end ,then only "text" value will get updated to the whatever value i entered in textArea.
but same application if i run on desktop environment it doesn't require me to press enter key at the end,it works perfectly fine .
but i don't know why i have to press enter at the end in android ? -
Hi All,
I was testing my android application and i found a strange behavior in textArea and textField ,where i have to explicitly press enter key/space key at the end ,then only "text" value will get updated to the whatever value i entered in textArea.
but same application if i run on desktop environment it doesn't require me to press enter key at the end,it works perfectly fine .
but i don't know why i have to press enter at the end in android ?@divaindie I don't know if it is relevant, but did you try to disable "PredictiveText"
TextField { inputMethodHints: Qt.ImhNoPredictiveText }
-
This is indeed related to predictive input. You can the partial text input via the
preeditText
property. -
@divaindie I don't know if it is relevant, but did you try to disable "PredictiveText"
TextField { inputMethodHints: Qt.ImhNoPredictiveText }
@KroMignon said in text Area and text field's "text" value will updated only after pressing enter or space button in android ?:
inputMethodHints
thanks ..issue solved !!