text Area and text field's "text" value will updated only after pressing enter or space button in android ?
-
wrote on 27 Feb 2019, 09:12 last edited by
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 ?wrote on 27 Feb 2019, 09:25 last edited by@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 }
wrote on 27 Feb 2019, 14:14 last edited by@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 !!
1/4