文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Flutter如何自定义应用程序内键盘

2023-07-02 08:56

关注

这篇文章主要介绍“Flutter如何自定义应用程序内键盘”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Flutter如何自定义应用程序内键盘”文章能帮助大家解决问题。

效果:

Flutter如何自定义应用程序内键盘

Flutter如何自定义应用程序内键盘

创建关键小部件

Flutter的优点是,通过组合更简单的小部件,可以轻松构建键盘等复杂布局。首先,您将创建几个简单的按键小部件。

文本键

我已经圈出了由您首先制作的TextKey小部件制作的键。

Flutter如何自定义应用程序内键盘

显示文本键(包括空格键)的自定义写意红色圆圈

将以下TextKey小部件添加到您的项目中:

class TextKey extends StatelessWidget {  const TextKey({    Key key,    @required this.text,    this.onTextInput,    this.flex = 1,  }) : super(key: key);  final String text;  final ValueSetter<String> onTextInput;  final int flex;  @override  Widget build(BuildContext context) {    return Expanded(      flex: flex,      child: Padding(        padding: const EdgeInsets.all(1.0),        child: Material(          color: Colors.blue.shade300,          child: InkWell(            onTap: () {              onTextInput?.call(text);            },            child: Container(              child: Center(child: Text(text)),            ),          ),        ),      ),    );  }}

以下是有趣的部分:

Backspace键

您还需要一个与TextKey小部件具有不同外观和功能的退格键。

Flutter如何自定义应用程序内键盘

退格键

将以下小部件添加到您的项目中:

class BackspaceKey extends StatelessWidget {  const BackspaceKey({    Key? key,    this.onBackspace,    this.flex = 1,  }) : super(key: key);  final VoidCallback? onBackspace;  final int flex;  @override  Widget build(BuildContext context) {    return Expanded(      flex: flex,      child: Padding(        padding: const EdgeInsets.all(1.0),        child: Material(          color: Colors.blue.shade300,          child: InkWell(            onTap: () {              onBackspace?.call();            },            child: Container(              child: Center(                child: Icon(Icons.backspace),              ),            ),          ),        ),      ),    );  }

备注:

将按键组成键盘

一旦有了按键,键盘就很容易布局,因为它们只是列中的行。

Flutter如何自定义应用程序内键盘

包含三行的列

这是代码。我省略了一些重复的部分,以便简洁。不过,你可以在文章的末尾找到它。

class CustomKeyboard extends StatelessWidget {  CustomKeyboard({    Key? key,    this.onTextInput,    this.onBackspace,  }) : super(key: key);  final ValueSetter<String>? onTextInput;  final VoidCallback? onBackspace;  void _textInputHandler(String text) => onTextInput?.call(text);  void _backspaceHandler() => onBackspace?.call();  @override  Widget build(BuildContext context) {    return Container(      height: 160,      color: Colors.blue,      child: Column(        children: [          buildRowOne(),          buildRowTwo(),          buildRowThree(),          buildRowFour(),          buildRowFive()        ],      ),    );  }  Expanded buildRowOne() {    return Expanded(      child: Row(        children: [          TextKey(            text: '坚',            onTextInput: _textInputHandler,          ),          TextKey(            text: '果',            onTextInput: _textInputHandler,          ),          TextKey(            text: '祝',            onTextInput: _textInputHandler,          ),        ],      ),    );  }  Expanded buildRowTwo() {    return Expanded(      child: Row(        children: [          TextKey(            text: 'I',            onTextInput: _textInputHandler,          ),          TextKey(            text: 'n',            onTextInput: _textInputHandler,          ),          TextKey(            text: 'f',            onTextInput: _textInputHandler,          ),          TextKey(            text: 'o',            onTextInput: _textInputHandler,          ),          TextKey(            text: 'Q',            onTextInput: _textInputHandler,          ),        ],      ),    );  }  Expanded buildRowThree() {    return Expanded(      child: Row(        children: [          TextKey(            text: '十',            onTextInput: _textInputHandler,          ),          TextKey(            text: '五',            onTextInput: _textInputHandler,          ),          TextKey(            text: '周',            onTextInput: _textInputHandler,          ),          TextKey(            text: '年',            onTextInput: _textInputHandler,          ),        ],      ),    );  }  Expanded buildRowFour() {    return Expanded(      child: Row(        children: [          TextKey(            text: '生',            onTextInput: _textInputHandler,          ),          TextKey(            text: '日',            onTextInput: _textInputHandler,          ),          TextKey(            text: '快',            onTextInput: _textInputHandler,          ),          TextKey(            text: '乐',            onTextInput: _textInputHandler,          ),          TextKey(            text: '!',            onTextInput: _textInputHandler,          ),        ],      ),    );  }  Expanded buildRowFive() {    return Expanded(      child: Row(        children: [          TextKey(            text: ' ????',            flex: 2,            onTextInput: _textInputHandler,          ),          TextKey(            text: ' ????',            flex: 2,            onTextInput: _textInputHandler,          ),          TextKey(            text: '????',            flex: 2,            onTextInput: _textInputHandler,          ),          TextKey(            text: '????',            flex: 2,            onTextInput: _textInputHandler,          ),          BackspaceKey(            onBackspace: _backspaceHandler,          ),        ],      ),    );  }}

有趣的部分:

在应用程序中使用键盘

现在,您可以像这样使用自定义键盘小部件:

Flutter如何自定义应用程序内键盘

代码看起来是这样的:

CustomKeyboard(  onTextInput: (myText) {    _insertText(myText);  },  onBackspace: () {    _backspace();  },),

处理文本输入

以下是_insertText方法的样子:

void _insertText(String myText) {  final text = _controller.text;  final textSelection = _controller.selection;  final newText = text.replaceRange(    textSelection.start,    textSelection.end,    myText,  );  final myTextLength = myText.length;  _controller.text = newText;  _controller.selection = textSelection.copyWith(    baseOffset: textSelection.start + myTextLength,    extentOffset: textSelection.start + myTextLength,  );}

_controllerTextFieldTextEditingController。你必须记住,可能有一个选择,所以如果有的话,请用密钥传递的文本替换它。

感谢这个,以提供帮助。*

处理退格

您会认为退格很简单,但有一些不同的情况需要考虑:

以下是_backspace方法的实现:

void _backspace() {  final text = _controller.text;  final textSelection = _controller.selection;  final selectionLength = textSelection.end - textSelection.start;  // There is a selection.  if (selectionLength > 0) {    final newText = text.replaceRange(      textSelection.start,      textSelection.end,      '',    );    _controller.text = newText;    _controller.selection = textSelection.copyWith(      baseOffset: textSelection.start,      extentOffset: textSelection.start,    );    return;  }  // The cursor is at the beginning.  if (textSelection.start == 0) {    return;  }  // Delete the previous character  final previousCodeUnit = text.codeUnitAt(textSelection.start - 1);  final offset = _isUtf16Surrogate(previousCodeUnit) ? 2 : 1;  final newStart = textSelection.start - offset;  final newEnd = textSelection.start;  final newText = text.replaceRange(    newStart,    newEnd,    '',  );  _controller.text = newText;  _controller.selection = textSelection.copyWith(    baseOffset: newStart,    extentOffset: newStart,  );}bool _isUtf16Surrogate(int value) {  return value & 0xF800 == 0xD800;}

即使删除之前的角色也有点棘手。如果您在有表情符号或其他代理对时只回退单个代码单元这将导致崩溃。作为上述代码中的变通办法,我检查了上一个字符是否是UFT-16代理,如果是,则后退了两个字符。(我从Flutter TextPainter源代码中获得了_isUtf16Surrogate方法。)然而,这仍然不是一个完美的解决方案,因为它不适用于像????????或????&zwj;????&zwj;????这样的字素簇,它们由多个代理对组成。不过,至少它不会

以下是象形文字和表情符号键盘作为演示:

Flutter如何自定义应用程序内键盘

????????????&zwj;????&zwj;

如果您对此有意见,请参阅此堆栈溢出问题。

防止系统键盘显示

如果您想将自定义键盘与aTextField一起使用,但系统键盘不断弹出,那会有点烦人。这毕竟是默认行为。

防止系统键盘显示的方法是将TextFieldreadOnly属性设置为true

TextField(  ...  showCursor: true,  readOnly: true,),

此外,将showCursor设置为true,使光标在您使用自定义键盘时仍然可以工作。

在系统键盘和自定义键盘之间切换

如果您想让用户选择使用系统键盘或自定义键盘,您只需为readOnly使用不同的值进行重建。

Flutter如何自定义应用程序内键盘

以下是演示应用程序中TextField的设置方式:

class _KeyboardDemoState extends State<KeyboardDemo> {  TextEditingController _controller = TextEditingController();  bool _readOnly = true;  @override  Widget build(BuildContext context) {    return Scaffold(      resizeToAvoidBottomInset: false,      body: Column(        children: [          ...          TextField(            controller: _controller,            decoration: ...,            style: TextStyle(fontSize: 24),            autofocus: true,            showCursor: true,            readOnly: _readOnly,          ),          IconButton(            icon: Icon(Icons.keyboard),            onPressed: () {              setState(() {                _readOnly = !_readOnly;              });            },          ),

有趣的部分:

就这样!如您所见,制作自己的应用程序内键盘并不难。

完整代码

以下是我在本文中使用的演示应用程序的完整代码:

import 'package:flutter/material.dart';void main() => runApp(MyApp());class MyApp extends StatelessWidget {  @override  Widget build(BuildContext context) {    return MaterialApp(      home: KeyboardDemo(),    );  }}class KeyboardDemo extends StatefulWidget {  @override  _KeyboardDemoState createState() => _KeyboardDemoState();}class _KeyboardDemoState extends State<KeyboardDemo> {  TextEditingController _controller = TextEditingController();  bool _readOnly = true;  @override  Widget build(BuildContext context) {    return Scaffold(      appBar: AppBar(        title: Text("大前端之旅的自定义键盘"),      ),      resizeToAvoidBottomInset: false,      body: Column(        children: [          Text("微信:xjg13690"),          SizedBox(height: 50),          TextField(            controller: _controller,            decoration: InputDecoration(              border: OutlineInputBorder(                borderRadius: BorderRadius.circular(3),              ),            ),            style: TextStyle(fontSize: 24),            autofocus: true,            showCursor: true,            readOnly: _readOnly,          ),          IconButton(            icon: Icon(Icons.keyboard),            onPressed: () {              setState(() {                _readOnly = !_readOnly;              });            },          ),          Spacer(),          CustomKeyboard(            onTextInput: (myText) {              _insertText(myText);            },            onBackspace: () {              _backspace();            },          ),        ],      ),    );  }  void _insertText(String myText) {    final text = _controller.text;    final textSelection = _controller.selection;    final newText = text.replaceRange(      textSelection.start,      textSelection.end,      myText,    );    final myTextLength = myText.length;    _controller.text = newText;    _controller.selection = textSelection.copyWith(      baseOffset: textSelection.start + myTextLength,      extentOffset: textSelection.start + myTextLength,    );  }  void _backspace() {    final text = _controller.text;    final textSelection = _controller.selection;    final selectionLength = textSelection.end - textSelection.start;    // There is a selection.    if (selectionLength > 0) {      final newText = text.replaceRange(        textSelection.start,        textSelection.end,        '',      );      _controller.text = newText;      _controller.selection = textSelection.copyWith(        baseOffset: textSelection.start,        extentOffset: textSelection.start,      );      return;    }    // The cursor is at the beginning.    if (textSelection.start == 0) {      return;    }    // Delete the previous character    final previousCodeUnit = text.codeUnitAt(textSelection.start - 1);    final offset = _isUtf16Surrogate(previousCodeUnit) ? 2 : 1;    final newStart = textSelection.start - offset;    final newEnd = textSelection.start;    final newText = text.replaceRange(      newStart,      newEnd,      '',    );    _controller.text = newText;    _controller.selection = textSelection.copyWith(      baseOffset: newStart,      extentOffset: newStart,    );  }  bool _isUtf16Surrogate(int value) {    return value & 0xF800 == 0xD800;  }  @override  void dispose() {    _controller.dispose();    super.dispose();  }}class CustomKeyboard extends StatelessWidget {  CustomKeyboard({    Key? key,    this.onTextInput,    this.onBackspace,  }) : super(key: key);  final ValueSetter<String>? onTextInput;  final VoidCallback? onBackspace;  void _textInputHandler(String text) => onTextInput?.call(text);  void _backspaceHandler() => onBackspace?.call();  @override  Widget build(BuildContext context) {    return Container(      height: 160,      color: Colors.blue,      child: Column(        children: [          buildRowOne(),          buildRowTwo(),          buildRowThree(),          buildRowFour(),          buildRowFive()        ],      ),    );  }  Expanded buildRowOne() {    return Expanded(      child: Row(        children: [          TextKey(            text: '坚',            onTextInput: _textInputHandler,          ),          TextKey(            text: '果',            onTextInput: _textInputHandler,          ),          TextKey(            text: '祝',            onTextInput: _textInputHandler,          ),        ],      ),    );  }  Expanded buildRowTwo() {    return Expanded(      child: Row(        children: [          TextKey(            text: 'I',            onTextInput: _textInputHandler,          ),          TextKey(            text: 'n',            onTextInput: _textInputHandler,          ),          TextKey(            text: 'f',            onTextInput: _textInputHandler,          ),          TextKey(            text: 'o',            onTextInput: _textInputHandler,          ),          TextKey(            text: 'Q',            onTextInput: _textInputHandler,          ),        ],      ),    );  }  Expanded buildRowThree() {    return Expanded(      child: Row(        children: [          TextKey(            text: '十',            onTextInput: _textInputHandler,          ),          TextKey(            text: '五',            onTextInput: _textInputHandler,          ),          TextKey(            text: '周',            onTextInput: _textInputHandler,          ),          TextKey(            text: '年',            onTextInput: _textInputHandler,          ),        ],      ),    );  }  Expanded buildRowFour() {    return Expanded(      child: Row(        children: [          TextKey(            text: '生',            onTextInput: _textInputHandler,          ),          TextKey(            text: '日',            onTextInput: _textInputHandler,          ),          TextKey(            text: '快',            onTextInput: _textInputHandler,          ),          TextKey(            text: '乐',            onTextInput: _textInputHandler,          ),          TextKey(            text: '!',            onTextInput: _textInputHandler,          ),        ],      ),    );  }  Expanded buildRowFive() {    return Expanded(      child: Row(        children: [          TextKey(            text: ' ????',            flex: 2,            onTextInput: _textInputHandler,          ),          TextKey(            text: ' ????',            flex: 2,            onTextInput: _textInputHandler,          ),          TextKey(            text: '????',            flex: 2,            onTextInput: _textInputHandler,          ),          TextKey(            text: '????',            flex: 2,            onTextInput: _textInputHandler,          ),          BackspaceKey(            onBackspace: _backspaceHandler,          ),        ],      ),    );  }}class TextKey extends StatelessWidget {  const TextKey({    Key? key,    @required this.text,    this.onTextInput,    this.flex = 1,  }) : super(key: key);  final String? text;  final ValueSetter<String>? onTextInput;  final int flex;  @override  Widget build(BuildContext context) {    return Expanded(      flex: flex,      child: Padding(        padding: const EdgeInsets.all(1.0),        child: Material(          color: Colors.blue.shade300,          child: InkWell(            onTap: () {              onTextInput?.call(text!);            },            child: Container(              child: Center(child: Text(text!)),            ),          ),        ),      ),    );  }}class BackspaceKey extends StatelessWidget {  const BackspaceKey({    Key? key,    this.onBackspace,    this.flex = 1,  }) : super(key: key);  final VoidCallback? onBackspace;  final int flex;  @override  Widget build(BuildContext context) {    return Expanded(      flex: flex,      child: Padding(        padding: const EdgeInsets.all(1.0),        child: Material(          color: Colors.blue.shade300,          child: InkWell(            onTap: () {              onBackspace?.call();            },            child: Container(              child: Center(                child: Icon(Icons.backspace),              ),            ),          ),        ),      ),    );  }}

关于“Flutter如何自定义应用程序内键盘”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注编程网行业资讯频道,小编每天都会为大家更新不同的知识点。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯