鸿蒙开发:自定义一个英文键盘

简介: 实现方式呢,有很多种,目前采用了比较简单的一种,如果大家采用网格Grid组件实现方式,也是可以的,但是需要考虑每行的边距以及数据,还有最后两行的格子占位问题。

前言

自定义键盘系列,陆陆续续已经完成了,车牌省份简称键盘,车牌字母选择键盘以及股票代码键盘,都是一些特殊行业比较常见的键盘,这篇文章,我们再去自定义个普通大众的英文键盘,和其它键盘定义一样,由于每行的间距不一样,所实现的方式也不一样。

代码实现

为了能更好的实现UI效果,这里也是采用了多组件的实现方式,毕竟每一行的边距是不一样的,总共分为了四行进行实现,大家可以采用网格布局,或者List组件都可以进行实现,这里我采用的Row组件,在Row组件里再使用ForEach进行遍历子组件,当然了,毕竟数据量小,具体用哪一种方式,还是看大家自己选择。

咱们只说一行代码实现即可啊,因为都是重复的,无非就是展示的数据源及边距不一样,每一个子元素重要的就是其权重。

Row() {
        ForEach(["Q", "W", "E", "R", "T", "Y", "U", "I", "O", "P"], (item: string) => {
          Text(item)
            .layoutWeight(1)
            .height(this.rectHeight)
            .fontSize(this.rectTextSize)
            .fontColor(this.rectTextColor)
            .backgroundColor(this.englishBgColor)
            .textAlign(TextAlign.Center)
            .margin({ left: 5, right: 5 })
            .borderRadius(this.rectBorderRadius)
            .onClick(() => {
              if (this.onItemClick != undefined) {
                this.onItemClick(item)
              }
            })
        })
      }

全部代码

代码实现起来非常的简单,大家自己看就行。

@Component
export struct EnglishKeyboardView {
  bgColor: ResourceColor = "#f5f5f5" //背景颜色
  englishBgColor: ResourceColor = "#ffffff" //英文背景颜色
  otherBgColor: ResourceColor = "#e8e8e8" //非英文背景颜色
  rectBorderWidth: Length = 1 //格子边框宽度
  rectBorderRadius: Length = 2 //格子边框圆角
  rectTextSize: Length = 16 //格子的文字大小
  rectTextColor: ResourceColor = "#333333" //格子文字的默认颜色
  deleteIconWidth: Length = 30 //删除图片宽度
  deleteIconSrc: PixelMap | ResourceStr | DrawableDescriptor = $r("app.media.view_ic_key_delete")
  rectHeight: Length = 60 //每个格子高度
  marginTop: Length = 10 //距离上
  marginBottom: Length = 10 //距离下
  onItemClick?: (item: string) => void //点击条目
  onDelete?: () => void //点击删除
  onComplete?: () => void //点击完成
  onChinese?: () => void //中文
  onSpace?: () => void //空格
  onNumber?: () => void //数字
  build() {
    Column() {
      Row() {
        ForEach(["Q", "W", "E", "R", "T", "Y", "U", "I", "O", "P"], (item: string) => {
          Text(item)
            .layoutWeight(1)
            .height(this.rectHeight)
            .fontSize(this.rectTextSize)
            .fontColor(this.rectTextColor)
            .backgroundColor(this.englishBgColor)
            .textAlign(TextAlign.Center)
            .margin({ left: 5, right: 5 })
            .borderRadius(this.rectBorderRadius)
            .onClick(() => {
              if (this.onItemClick != undefined) {
                this.onItemClick(item)
              }
            })
        })
      }
      Row() {
        ForEach(["A", "S", "D", "F", "G", "H", "J", "K", "L"], (item: string) => {
          Text(item)
            .layoutWeight(1)
            .height(this.rectHeight)
            .fontSize(this.rectTextSize)
            .fontColor(this.rectTextColor)
            .backgroundColor(this.englishBgColor)
            .textAlign(TextAlign.Center)
            .margin({ left: 5, right: 5 })
            .borderRadius(this.rectBorderRadius)
            .onClick(() => {
              if (this.onItemClick != undefined) {
                this.onItemClick(item)
              }
            })
        })
      }.margin({ top: 10, left: 20, right: 20 })
      Row() {
        ForEach(["中", "Z", "X", "C", "V", "B", "N", "M", "删除"], (item: string, index: number) => {
          if (index == 8) {
            Column() {
              Image(this.deleteIconSrc)
                .width(this.deleteIconWidth)
            }
            .layoutWeight(1.5)
            .justifyContent(FlexAlign.Center)
            .backgroundColor(this.otherBgColor)
            .height(this.rectHeight)
            .onClick(() => {
              //删除
              if (this.onDelete != undefined) {
                this.onDelete()
              }
            })
          } else {
            Text(item)
              .layoutWeight(index == 0 ? 1.5 : 1)
              .height(this.rectHeight)
              .fontSize(this.rectTextSize)
              .fontColor(this.rectTextColor)
              .backgroundColor((index == 0) ? this.otherBgColor : this.englishBgColor)
              .textAlign(TextAlign.Center)
              .margin({ left: 5, right: 5 })
              .borderRadius(this.rectBorderRadius)
              .onClick(() => {
                if (index == 0) {
                  //中文
                  if (this.onChinese != undefined) {
                    this.onChinese()
                  }
                } else {
                  if (this.onItemClick != undefined) {
                    this.onItemClick(item)
                  }
                }
              })
          }
        })
      }.margin({ top: 10 })
      Row() {
        ForEach(["123", "space", "确定"], (item: string, index: number) => {
          Text(item)
            .layoutWeight((index == 1) ? 2 : 1)
            .height(60)
            .backgroundColor(this.otherBgColor)
            .textAlign(TextAlign.Center)
            .margin({ left: 5, right: 5 })
            .borderRadius(this.rectBorderRadius)
            .onClick(() => {
              if (index == 0) {
                //数字
                if (this.onNumber != undefined) {
                  this.onNumber()
                }
              } else if (index == 1) {
                //空格
                if (this.onSpace != undefined) {
                  this.onSpace()
                }
              } else if (index == 2) {
                //确定
                if (this.onComplete != undefined) {
                  this.onComplete()
                }
              }
            })
        })
      }.margin({ top: 10 })
    }.backgroundColor(this.bgColor)
    .padding({ top: this.marginTop, bottom: this.marginBottom })
  }
}

封装使用

和车牌省份简称一样,车牌字母也进行封装,方便大家进行使用。

方式一:在Terminal窗口中,执行如下命令安装三方包,DevEco Studio会自动在工程的oh-package.json5中自动添加三方包依赖。

建议:在使用的模块路径下进行执行命令。

ohpm install @abner/keyboard

方式二:在工程的oh-package.json5中设置三方包依赖,配置示例如下:

"dependencies": { "@abner/keyboard": "^1.0.0"}

代码调用

EnglishKeyboardView({
        onItemClick: (item: string) => {
          //点击事件
          console.log("=====点击内容:" + item)
        },
        onDelete: () => {
          //点击删除
          console.log("=====点击删除")
        },
        onComplete: () => {
          //点击确定
          console.log("=====点击确定")
        },
        onChinese: () => {
          //点击中文切换
          console.log("=====点击中文切换")
        },
        onSpace: () => {
          //点击空格
          console.log("=====点击空格")
        },
        onNumber: () => {
          //点击数字
          console.log("=====点击数字")
        }
      })

属性介绍

属性

类型

概述

onItemClick

(item: string) => void

点击条目回调

onDelete

() => void

点击删除回调

onComplete

() => void

点击完成回调

onChinese

() => void

点击中文回调

onSpace

() => void

点击空格回调

onNumber

() => void

点击数字回调

bgColor

ResourceColor

背景颜色

englishBgColor

ResourceColor

英文背景颜色

otherBgColor

ResourceColor

非英文背景颜色

rectBorderWidth

Length

格子边框宽度

rectBorderRadius

Length

格子边框圆角

rectTextSize

Length

格子的文字大小

rectTextColor

ResourceColor

格子文字的默认颜色

deleteIconWidth

Length

删除icon宽度

deleteIconSrc

PixelMap /ResourceStr /DrawableDescriptor

删除icon资源

rectHeight

Length

每个格子高度

marginTop

Length

距离上边的距离

marginBottom

Length

距离下边的距离

相关总结

实现方式呢,有很多种,目前采用了比较简单的一种,如果大家采用网格Grid组件实现方式,也是可以的,但是需要考虑每行的边距以及数据,还有最后两行的格子占位问题。

相关文章
|
3天前
|
存储 人工智能 JavaScript
Harmony OS开发-ArkTS语言速成二
本文介绍了ArkTS基础语法,包括三种基本数据类型(string、number、boolean)和变量的使用。重点讲解了let、const和var的区别,涵盖作用域、变量提升、重新赋值及初始化等方面。期待与你共同进步!
61 47
Harmony OS开发-ArkTS语言速成二
|
3天前
|
前端开发 API 数据库
鸿蒙开发:异步并发操作
在结合async/await进行使用的时候,有一点需要注意,await关键字必须结合async,这两个是搭配使用的,缺一不可,同步风格在使用的时候,如何获取到错误呢,毕竟没有catch方法,其实,我们可以自己创建try/catch来捕获异常。
鸿蒙开发:异步并发操作
|
3天前
|
API
鸿蒙开发:实现popup弹窗
目前提供了两种方式实现popup弹窗,主推系统实现的方式,几乎能满足我们常见的所有场景,当然了,文章毕竟有限,尽量还是以官网为主。
鸿蒙开发:实现popup弹窗
|
3天前
|
开发框架 物联网 API
HarmonyOS开发:串行通信开发详解
在电子设备和智能系统的设计中,数据通信是连接各个组件和设备的核心,串行通信作为一种基础且广泛应用的数据传输方式,因其简单、高效和成本效益高而被广泛采用。HarmonyOS作为一个全场景智能终端操作系统,不仅支持多种设备和场景,还提供了强大的开发框架和API,使得开发者能够轻松实现串行通信功能。随着技术的不断进步,串行通信技术也在不断发展。在HarmonyOS中,串行通信的开发不仅涉及到基本的数据发送和接收,还包括设备配置、错误处理和性能优化等多个方面。那么本文就来深入探讨在HarmonyOS中如何开发串行通信应用,包括串行通信的基础知识、HarmonyOS提供的API、开发步骤和实际代码示例
16 2
|
3天前
鸿蒙语言开发 几十套鸿蒙ArkTs app毕业设计及课程作业
鸿蒙语言开发 几十套鸿蒙ArkTs app毕业设计及课程作业
14 1
|
移动开发 Ubuntu 网络协议
嵌入式linux/鸿蒙开发板(IMX6ULL)开发 (二)Ubuntu操作入门与Linux常用命令(中)
嵌入式linux/鸿蒙开发板(IMX6ULL)开发 (二)Ubuntu操作入门与Linux常用命令
179 1
嵌入式linux/鸿蒙开发板(IMX6ULL)开发 (二)Ubuntu操作入门与Linux常用命令(中)
|
XML Web App开发 开发框架
鸿蒙开发入门 | 开发第一个鸿蒙应用+页面跳转
准备好鸿蒙开发环境后,接下来就需要创建鸿蒙项目,掌握项目的创建过程以及配置。项目创建好后,需要把项目运行在模拟器上,鸿蒙的模拟和安卓模拟器有些不同,鸿蒙提供远程模拟器和本地模拟器,通过登录华为账号登录在线模拟器,使用DevEco Studio可将项目部署到远程模拟器中。
1293 1
鸿蒙开发入门 | 开发第一个鸿蒙应用+页面跳转
|
存储 Ubuntu 前端开发
嵌入式linux/鸿蒙开发板(IMX6ULL)开发 (二)Ubuntu操作入门与Linux常用命令(下)
嵌入式linux/鸿蒙开发板(IMX6ULL)开发 (二)Ubuntu操作入门与Linux常用命令
349 0
嵌入式linux/鸿蒙开发板(IMX6ULL)开发 (二)Ubuntu操作入门与Linux常用命令(下)
|
存储 编解码 Ubuntu
嵌入式linux/鸿蒙开发板(IMX6ULL)开发 (二)Ubuntu操作入门与Linux常用命令(上)
嵌入式linux/鸿蒙开发板(IMX6ULL)开发 (二)Ubuntu操作入门与Linux常用命令
244 0
嵌入式linux/鸿蒙开发板(IMX6ULL)开发 (二)Ubuntu操作入门与Linux常用命令(上)
|
开发工具
HarmonyOS(鸿蒙)开发一文入门
HarmonyOS(鸿蒙)开发一文入门
181 0
HarmonyOS(鸿蒙)开发一文入门

热门文章

最新文章