如何在Flutter中检测虚拟键盘事件

时间:2018-08-08 09:26:35

标签: flutter

如何监视虚拟键盘的键事件,包括键代码。 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) {}
  }

1 个答案:

答案 0 :(得分:2)

我有一个类似的问题,我以这种方式解决了。 尝试通过TextEditingController在文本中获取光标位置索引,并使用该索引获取最后键入的值。 想象下面的示例在TextField的{​​{1}}函数中,该函数为您提供了插入的文本。

类似这样的东西

onChanged