如何监视虚拟键盘的键事件,包括键代码。 RawKeyboardListener对虚拟键盘键无效。
void _onkeyclick(RawKeyEvent event) {
if (event is RawKeyDownEvent) {
if (event.data is RawKeyEventDataAndroid) {
RawKeyDownEvent rawKeyDownEvent = event;
RawKeyEventDataAndroid rawKeyEventDataAndroid = rawKeyDownEvent.data;
print(rawKeyEventDataAndroid.keyCode);
switch (rawKeyEventDataAndroid.keyCode) {
case 66:
}
}
}
}
Widget getItem(Pbtem pb) {
if (pb.type == 1) {
TextEditingController _c = new TextEditingController();
return new RawKeyboardListener(
focusNode: _focusNode,
onKey: _onkeyclick,
child: new EditableText(
controller: _c,
focusNode: _focusNode,
style: TextStyle(
color: Colors.black,
fontSize: 18.0,
),
keyboardType: TextInputType.multiline,
cursorColor: Colors.blue,
));
} else if (pb.type == 2) {}
}
答案 0 :(得分:2)
我有一个类似的问题,我以这种方式解决了。
尝试通过TextEditingController
在文本中获取光标位置索引,并使用该索引获取最后键入的值。
想象下面的示例在TextField
的{{1}}函数中,该函数为您提供了插入的文本。
类似这样的东西
onChanged