TextInput and android keyboard input handling
-
wrote on 8 Jan 2018, 14:07 last edited by
Hello,
How can I get information from android virtual keyboard that any character has been put by user?
I have tried Keys.onPressed and TextInput.onTextEdited.
As I noticed, signal is sent always after when we change word eg. add space or enter. I need sth to get every single character (+ spaces and backspaces) during typing.
-
wrote on 8 Jan 2018, 15:52 last edited by
Note: Unlike the TextInput::text property, this contains partial text input from an input method.
-
wrote on 8 Jan 2018, 15:53 last edited by
Hi,
you can use 'onTextChanged' signalonTextChanged: {
console.log(text)
} -
@LeLev this is what I've tried :) and it is not working.
@jpnurmi Thanks! I did't notice before this property, it works like it should.
1/5