HarmonyOS开发(五):常用基础组件

1、组件介绍

组件(Component),是界面搭建及显示的最小单元。

组件根据功能可以分为五大类:基础组件、容器组件、媒体组件、绘制组件、画布组件

2、基础组件

基础组件是视图层的基本组成单元,它包含:Text、Image、TextInput、Button、LoadingProgress……

2.1、Text

Text组件可以在界面上展示一段文本信息,它可以包含子组件Span。

对于包含文本文本元素的组件(如:Text,Span,Button,TextInput……)可以使用fontSize(),fontColor(),fontWeight(),fontFamily(),fontStyle()这些文本样式设置文本的大小、颜色、粗细、字体等信息。

名称参数类型描述
fontColorResourceColor设置文本颜色
fontSizeLength | Resource设置文本尺寸,Length为number类型时,使用fp单位
fontStyleFontStyle设置文本的字体样式、默认值:FontStyle.Normal
fontWeightnumber | FontWeight| string

设置文本字体的粗细

number取值是[400,900],间隔是100,值越大越粗

string类型仅支持number类型取值的字符串形式,例如“400”,以及“bold”、“bolder”、“lighter”、“regular”、“medium”,分别对应FontWeight中相应的枚举值。

默认值:FontWeight.Normal

fontFamilystring | Resource  设置文本的字体列表。使用多个字体,使用“,”进行分割,优先级按顺序生效。例如:“Arial,sans-serif

2.1.1、通用属性与文本样式设置

@Entry
@Component
struct Index {build() {Row() {Column() {Text('Harmony OS').margin({bottom:15})Text('鸿蒙系统').fontColor(Color.Blue).fontSize(20).fontStyle(FontStyle.Italic).fontWeight(FontWeight.Bold).fontFamily('Arial')}.width('100%')}.backgroundColor(0xF1F3F5).height('100%')}
}

2.1.2、文本对齐方式设置

@Entry
@Component
struct Index {build() {Row() {Column() {Text('Harmony OS').margin({bottom:15}).width(200).height(50).textAlign(TextAlign.Start)    // 对齐方式.backgroundColor(0xE6F2FD)Text('鸿蒙系统').fontColor(Color.Blue).fontSize(20).fontStyle(FontStyle.Italic).fontWeight(FontWeight.Bold).fontFamily('Arial')}.width('100%')}.backgroundColor(0xF1F3F5).height('100%')}
}

textAlign参数类型为TextAlign,定义了几种类型

  • Start:默认值,水平对齐首部
  • Center:水平居中对齐
  • End:水平对齐尾部

2.1.3、设置文本超长显示

当文本的内容过多超出了Text组件范围时,可以使用textOverflow设置文本截取方式,配合maxLines使用,单独设置不生效

maxLines用来设置文本显示的最大行数

如果把textOverflow设置为Ellipsis,那么它会把显示不下的文本使用“...”表示

@Entry
@Component
struct Index {build() {Row() {Column() {Text('Harmony OS').margin({bottom:15}).width(200).height(50).textAlign(TextAlign.Start).backgroundColor(0xE6F2FD)Text('鸿蒙系统').fontColor(Color.Blue).fontSize(20).fontStyle(FontStyle.Italic).fontWeight(FontWeight.Bold).fontFamily('Arial').margin({bottom:15})Text('滨海昌正企业管理有限公司成立于2011年,主要从事母婴行业品牌开发与销售,是集产品研发、品牌运营、销售服务及物流供应链为一体的公司。现有团队人数800人,其中管理人员100+人。').fontSize(18)// 文本超长显示设置使用textOverflow配合maxLines一起使用.maxLines(1).textOverflow({overflow: TextOverflow.Ellipsis}).backgroundColor(0xE6F2FD)}.width('100%')}.backgroundColor(0xF1F3F5).height('100%')}
}

2.1.4、设置文本装饰线

使用decoration设置文本的装饰线样式及其颜色

它包含两个参数:type用来指定装饰线的样式,其参数类型是TextDecorationType;color用来指定装饰线的颜色,其参数类型是Color,它是一个可选参数。

@Entry
@Component
struct Index {build() {Row() {Column() {Text('Harmony OS').margin({bottom:15}).width(200).height(50).textAlign(TextAlign.Start) // 设置文本对齐方式.backgroundColor(0xE6F2FD).fontSize(20).decoration({type: TextDecorationType.Underline, color: Color.Black}) // 设置文本装饰线Text('鸿蒙系统').fontColor(Color.Blue).fontSize(20).fontStyle(FontStyle.Italic).fontWeight(FontWeight.Bold).fontFamily('Arial').margin({bottom:15})Text('滨海昌正企业管理有限公司成立于2011年,主要从事母婴行业品牌开发与销售,是集产品研发、品牌运营、销售服务及物流供应链为一体的公司。现有团队人数800人,其中管理人员100+人。').fontSize(18)// 超长文本使用textOverflow与maxLines配合设置.maxLines(1).textOverflow({overflow: TextOverflow.Ellipsis}).backgroundColor(0xE6F2FD)}.width('100%')}.backgroundColor(0xF1F3F5).height('100%')}
}

TexDecorationType包含以下几种类型:

  • None:表示不使用装饰线
  • Overline:表示使用上划线装饰
  • LineThrough:表示使用删除线来装饰
  • Underline:表示使用下划线装饰

2.2、Image

Image组件用来渲染展示图片,只需要给定图片地址、宽和高,图片就可以加载出来

@Entry
@Component
struct Test {build() {Row() {Column() {Image($r("app.media.icon")).width(100).height(100)}.width('100%')}.height('100%')}
}

2.2.1、设置图片的缩放类型

图片资源放在项目的:src/main/resources/base/media 目录

为了使用图片在页面中有更好的显示效果,有时候需要对图片进行缩放处理。

可以使用objectFit属性来设置图片的缩放类型,其参数的类型是ImageFit。

@Entry
@Component
struct Test {build() {Row() {Column() {Image($r("app.media.image")).objectFit(ImageFit.Cover) // 默认的缩放方式.width(200).height(300).backgroundColor(0xCCCCCC)}.width('100%')}.height('100%')}
}

ImageFit包含如下几种类型:

  • Contain:保持宽高比进行缩小或放大,使用得图片完全显示在显示边界中
  • Cover:默认值,保持宽高比进行缩小或放大,使得图边两边都大于或等于显示边界
  • Auto:自适应显示
  • Fill:不保持宽高比进行放大或缩小,使用图片充满显示边界
  • ScaleDown:保持宽高比显示,图片缩小或者保持不变
  • None:保持原极尺寸显示

2.2.2、加载网络图片

如果需要加载网络图片需要在module.json5中申请网络访问权限

{"module" : {"requestPermissions":[{"name": "ohos.permission.INTERNET"}]}
}
@Entry
@Component
struct Test {build() {Row() {Column() {Image($r("app.media.image")).objectFit(ImageFit.Contain) // 默认的缩放方式.width(200).height(300).backgroundColor(0xCCCCCC).margin({bottom:15})// 加载网图图片Image('https://p1.itc.cn/q_70/images03/20210217/d74ec9f0a1dc431a87c5cb4742ee17b1.jpeg').width(200).height(200)}.width('100%')}.height('100%')}
}

2.3、TextInput

TextInput组件用来输入单行文本,响应输入事件。

@Entry
@Component
struct TextInputTest {build() {Row() {Column() {TextInput().fontColor(Color.Blue).fontSize(20).fontStyle(FontStyle.Italic).fontWeight(FontWeight.Bold).fontFamily('Arial')}.width('100%')}.height('100%')}
}

与Text组件一样,也支持文本样式的设置。

2.3.1、设置输入提示语

要在输入框中添加提示语可以使用placeholder属性来实现,同时还可以使用placeholderColor和placeholderFont来分别设置提示文本的颜色和样式。

@Entry
@Component
struct TextInputTest {build() {Row() {Column() {TextInput().fontColor(Color.Blue).fontSize(20).fontStyle(FontStyle.Italic).fontWeight(FontWeight.Bold).fontFamily('Arial').margin({bottom: 15})TextInput({placeholder: '请输入账号'}).placeholderColor(0x999999).placeholderFont({size: 20, weight: FontWeight.Medium, family: 'cursive', style: FontStyle.Italic})}.width('100%')}.height('100%')}
}

2.3.2、设置输入类型

可以使用type属性来设置输入框类型。其类型是InputType

@Entry
@Component
struct TextInputTest {build() {Row() {Column() {TextInput().fontColor(Color.Blue).fontSize(20).fontStyle(FontStyle.Italic).fontWeight(FontWeight.Bold).fontFamily('Arial').margin({bottom: 15})TextInput({placeholder: '请输入账号'}).placeholderColor(0x999999).placeholderFont({size: 20, weight: FontWeight.Medium, family: 'cursive', style: FontStyle.Italic}).margin({bottom: 15})TextInput({placeholder: '请输入密码'}).type(InputType.Password) // 指定输入的类型}.width('100%')}.height('100%')}
}

InputType包含以下几种输入类型:

  • Normal:基本输入模式。支持输入数字、字母、下划线、空格、特殊字符
  • Password:密码输入模式
  • Email:e-mail地址输入模式
  • Number:纯数字输入模式

2.3.3、设置光标的位置

@Entry
@Component
struct TextInputTest {controller: TextInputController = new TextInputController();build() {Row() {Column() {TextInput().fontColor(Color.Blue).fontSize(20).fontStyle(FontStyle.Italic).fontWeight(FontWeight.Bold).fontFamily('Arial').margin({bottom: 15})TextInput({placeholder: '请输入账号'}).placeholderColor(0x999999).placeholderFont({size: 20, weight: FontWeight.Medium, family: 'cursive', style: FontStyle.Italic}).margin({bottom: 15})TextInput({placeholder: '请输入密码'}).type(InputType.Password) // 指定输入的类型.margin({bottom: 15})TextInput({controller: this.controller}).margin({bottom: 15})Button('设置光标的位置').onClick(() => {this.controller.caretPosition(2)  // 设置光标的位置在第二个字符之后})}.width('100%')}.height('100%')}
}

上面使用了TextInputColler的caretPosition方法来设置光标所在的位置。

2.3.4、获取输入文本

可以给TextInput设置onChange事件,输入文本发生变化时触发回调,从而拿到输入框中的文本信息。

@Entry
@Component
struct TextInputTest {controller: TextInputController = new TextInputController();@State username: string = ''; // 保存用户输入的账号build() {Row() {Column() {TextInput().fontColor(Color.Blue).fontSize(20).fontStyle(FontStyle.Italic).fontWeight(FontWeight.Bold).fontFamily('Arial').margin({bottom: 15})TextInput({placeholder: '请输入账号'}).placeholderColor(0x999999).placeholderFont({size: 20, weight: FontWeight.Medium, family: 'cursive', style: FontStyle.Italic}).margin({bottom: 15})TextInput({placeholder: '请输入密码'}).type(InputType.Password) // 指定输入的类型.margin({bottom: 15})TextInput({controller: this.controller}).margin({bottom: 15})Button('设置光标的位置').onClick(() => {this.controller.caretPosition(2)  // 设置光标的位置在第二个字符之后}).margin({bottom: 15})TextInput({placeholder: 'username'}).caretColor(Color.Blue) // 光标的颜色.onChange((value: string) => {this.username = value;}).margin({bottom: 15})Text(this.username)}.width('100%')}.height('100%')}
}

2.4、Button

Button组件主要用来响应点击操作,可以包含子组件。

@Entry
@Component
struct ButtonTest {build() {Row() {Column() {Button('登录',{type: ButtonType.Capsule, stateEffect: true}).width('90%').height(40).fontSize(16).fontWeight(FontWeight.Medium).backgroundColor('#007DFF')}.width('100%')}.height('100%')}
}

2.4.1、按钮样式

type用来定义按钮的样式,其类型是ButtonType

stateEffect用于设置按钮按下时是否开启切换效果,当状态为false时,点击效果关闭,默认值为true

type的样式可以有如下:

  • Capsule:胶囊型按钮(圆角默认是高度的一半)
  • Circle:圆形按钮
  • Normal:普通按钮(默认,不带圆角)

2.4.2、按钮点击事件

可以给Button绑定onClick事件,当用户点击Button的时候,则会执行onClick方法,调用其中的逻辑代码。

@Entry
@Component
struct ButtonTest {@State text: string = '';@State isShow: boolean = false;build() {Row() {Column() {TextInput({placeholder:'请输入内容'}).margin({bottom: 15}).onChange((value: string) => {this.isShow = false;this.text = value;})Button('登录',{type: ButtonType.Capsule, stateEffect: true}).width('90%').height(40).fontSize(16).fontWeight(FontWeight.Medium).backgroundColor('#007DFF').margin({bottom: 15}).onClick(() => {  // 绑定按钮点击事件this.isShow = !this.isShow;})if(this.isShow) {Text(this.text);}}.width('100%')}.height('100%')}
}

2.4.3、包含子组件按钮

@Entry
@Component
struct ButtonTest {@State text: string = '';@State isShow: boolean = false;build() {Row() {Column() {TextInput({placeholder:'请输入内容'}).margin({bottom: 15}).onChange((value: string) => {this.isShow = false;this.text = value;})Button('登录',{type: ButtonType.Capsule, stateEffect: true}).width('90%').height(40).fontSize(16).fontWeight(FontWeight.Medium).backgroundColor('#007DFF').margin({bottom: 15}).onClick(() => {  // 绑定按钮点击事件this.isShow = !this.isShow;})if(this.isShow) {Text(this.text).margin({bottom: 15})}Button({type: ButtonType.Circle, stateEffect: true}) {// 子组件,在其中放置一个图片Image($r('app.media.delete')).width(32).height(32)}.width(64).height(64).backgroundColor(0x317aff)}.width('100%')}.height('100%')}
}

2.5、LoadingProgress

这个组件用来显示加载进度。

@Entry
@Component
struct LoadingTest {build() {Row() {Column() {LoadingProgress().color(Color.Blue).height(64).width(64)}.width('100%')}.height('100%')}
}

3、资源引用

Resource是资源引用类型,用于设置组件属性的值。

资源文件(字符串、图片、音频……)统一存放在resources目录下。

开发者可以根据屏幕尺寸呈现不同的局效果,根据语言不同使用不同的字符串。

@Entry
@Component
struct ResourceTest {build() {Row() {Column() {Button('登录', {type: ButtonType.Capsule, stateEffect: true}).width(300).height(40).fontSize(16).fontWeight(FontWeight.Medium).backgroundColor('#007DFF')}.width('100%')}.height('100%')}
}

上面的按钮则是写死的,我们可以把相应的资源存放在对应的资源文件中

资源文件的目录:entry/src/main/resources
string.json用来存放字符串资源

{"string": [{"name": "login_text","value": "登录"}]
}

同时对于字符串资源需要在en_US,zh_CN目录下对应加上这个login_text键对应的值

en_US目录下的string.json

{"string": [{"name": "login_text","value": "login"}]
}

zh_CN目录下的string.json

{"string": [{"name": "login_text","value": "登录"}]
}

在float.json中新增如下键值对

{"float": [{"name": "button_width","value": "300vp"},{"name": "button_height","value": "40vp"},{"name": "login_fontSize","value": "18fp"}]
}

在color.json中新增一个键button_color

{"color": [{"name": "start_window_background","value": "#FFFFFF"},{"name": "button_color","value": "#1890ff"}]
}

配置了上面这些资源后,在使用时就中以以$r('app.type.name')的形式引用应用资源。

type代表资源的类型(或者是资源的存放位置)可以取值是:color,float,string,plural,media

name代表资源的命名

通过引用资源代码可以修改为如下:

@Entry
@Component
struct ResourceTest {build() {Row() {Column() {Button($r('app.string.login_text'), {type: ButtonType.Capsule, stateEffect: true}).width($r('app.float.button_width')).height($r('app.float.button_height')).fontSize($r('app.float.login_fontSize')).fontWeight(FontWeight.Medium).backgroundColor($r('app.color.button_color'))}.width('100%')}.height('100%')}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/160236.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

OpenCV C++ 张正友相机标定【相机标定原理、相机标定流程、图像畸变矫正】

文章目录 3.1 标定原理3.2 相机标定流程步骤1:采集棋盘格图像,批处理(调整尺寸、重命名)步骤2:提取棋盘格内角点坐标步骤3:进一步提取亚像素角点信息在棋盘标定图上绘制找到的内角点(非必须,仅为了显示)步骤4:相机标定--计算出相机内参数矩阵和畸变系数步骤5:畸变图像…

Spring (二)@Order, Ordered 失效

Spring (二)Order, Ordered 失效 先上例子 public class OrderAnnotationExample {Order(2)static class MyBeanFactoryPostProcessor1 implements BeanFactoryPostProcessor {Overridepublic void postProcessBeanFactory(ConfigurableListableBeanFa…

如何加速JavaScript 代码运行速度

如何加速JavaScript 代码运行速度 前言减少DOM访问避免不必要的变量延迟script加载异步和同步使用异步编程避免使用With关键词 前言 本文主要通过五个方面来讲解如何使Js代码得到性能优化,从而实现加快Js代码运行速度的作用。那么好,本文正式开始。 减…

感染了后缀为.[bkpsvr@firemail.cc].EKING勒索病毒如何应对?数据能够恢复吗?

导言: 在当前数字时代,勒索病毒成为网络威胁的一大隐患。本文将深入介绍一种名为[bkpsvrfiremail.cc].EKING的勒索病毒,以及如何应对遭受其攻击后,有效地恢复被加密的数据文件,并提供一些预防措施以减少感染的风险。数…

sqlserver==索引解析,执行计划,索引大小

1创建测试表 -- 创建大型表 CREATE TABLE LargeTableWithIndex (ID int IDENTITY(1,1) PRIMARY KEY,IndexedColumn int,NonIndexedColumn nvarchar(255),OtherData nvarchar(255) );2插入测试数据 -- 使用 T-SQL 插入大量数据 DECLARE @i int = 1; WHILE @i <= 100000 -- …

Mac中LaTex无法编译的问题

最近在使用TexStudio时&#xff0c;遇到一个棘手的问题&#xff1a; 无法编译&#xff0c;提示如下&#xff1a; kpathsea: Running mktexfmt xelatex.fmt /Library/TeX/texbin/mktexfmt: kpsewhich -var-valueTEXMFROOT failed, aborting early. BEGIN failed–compilation a…

[Linux] Network: IPv6 link-local 地址是否可用不自动生成

原来有一段时间在做扩充产品的VLAN个数&#xff0c;然后就遇到过一个问题&#xff1a;说这个Linux的默认配置里&#xff0c;会为每一个网络接口添加一个link-local的地址&#xff0c;就是FE80::开头的地址&#xff0c;在RFC-4291里有如下的定义&#xff1a; Link-Local unicas…

redis运维(十二) 位图

一 位图 ① 概念 1、说明&#xff1a;位图还是在操作字符串2、位图玩字符串在内存中存储的二进制3、ASCII字符通过映射转化为二进制4、操作的是字符串value ② ASCII字符铺垫 1、控制ASCII字符 2、ASCII可显示字符 ③ SETBIT 细节&#xff1a; setbit 命令的返回值是之…

git常用命令(git github ssh)

目录 1、语法说明2、本地仓库相关操作建立一个git文件(git init)把工作区的文件添加到暂存区(git add)把暂存区的文件添加到本地仓库(git commit)查看暂存区和本地仓库中的文件(git ls-files)查看文件夹下所有文件的状态(git status)查看版本库中的提交记录(git log)恢复的文件…

如何解决msvcp110.dll丢失问题,分享5个有效的解决方法

最近&#xff0c;我在使用电脑时遇到了一个令人头疼的问题——msvcp110.dll丢失。这个错误通常会导致某些应用程序无法正常运行。为了解决这个问题&#xff0c;我们需要采取一些有效的方法来修复丢失的msvcp110.dll文件。那么&#xff0c;msvcp110.dll到底是什么呢&#xff1f;…

代码随想录 10.14 || 二叉树 LeetCode 669.修剪二叉搜索树、108.将有序数组转换为二叉搜索树、538.将二叉搜索树转为累加树

669.修剪二叉搜索树 根据给定的最小边界 left 和最大边界 right 修剪二叉搜索树&#xff0c;保留值在 left ~ right 的节点&#xff0c;删除不满足此条件的节点。修剪树不应该改变保留在树中的元素的相对结构&#xff0c;即父子关系。 设 cur 为当前访问的二叉树节点&#xff0…

LeetCode(32)串联所有单词的子串【滑动窗口】【困难】(含图解)

目录 1.题目2.答案3.提交结果截图4.图解 链接&#xff1a; 串联所有单词的子串 1.题目 给定一个字符串 s 和一个字符串数组 words。 words 中所有字符串 长度相同。 s 中的 串联子串 是指一个包含 words 中所有字符串以任意顺序排列连接起来的子串。 例如&#xff0c;如果 w…

Flutter的Event Loop

Flutter 的事件循环机制是其框架的核心部分&#xff0c;它负责管理事件的处理和UI的渲染。了解这个机制对于开发高效且响应迅速的Flutter应用非常重要。以下是Flutter事件循环的主要组成部分和工作原理&#xff1a; 1. 主事件循环&#xff08;Main Event Loop&#xff09; 当…

利用ros实现单片机通讯(转载)

我觉得如果使用这个人的micro_ros通信协议&#xff0c;就不用再去Ubuntu或者Windows上面自己写驱动程序了&#xff0c; 利用micro_ros实现esp32与ros2的通讯 Tianci ​ 天津大学 工学博士 参考&#xff1a;https://github.com/micro-ROS/micro_ros_arduino https://blog.cs…

B站app作品列表sign

之前写过一篇pc的:B站pc端w_rid逆向 最近pc端老是作妖,更新的太频繁了, 于是决定干一下app, pc端有个w_rid加密,app端也有个类似的sign 人狠话不多,直接上成果吧: # -*- coding: UTF-8 -*- import hashlib import time import requests import json from urllib.parse…

C语言好好题(一维数组)

两天没有更新了&#xff0c;贴纸们&#xff0c;有没有想我呀。&#x1f604;&#x1f604;&#x1f604; 好了&#xff0c;就寒暄到这里吧&#xff0c;下面请看题&#xff1a; 有序序列判断 输入一个整数序列&#xff0c;判断是否是有序序列&#xff0c;有序&#xff0c;指序列…

腾讯云轻量4核8G12M带宽服务器租用价格和S5实例报价

腾讯云4核8G服务器优惠价格表&#xff0c;云服务器CVM标准型S5实例4核8G配置价格15个月1437.3元&#xff0c;5年6490.44元&#xff0c;轻量应用服务器4核8G12M带宽一年446元、529元15个月&#xff0c;阿腾云atengyun.com分享腾讯云4核8G服务器详细配置、优惠价格及限制条件&…

C++(模板进阶)

目录 前言&#xff1a; 本章学习目标&#xff1a; 1.非类型模版参数 1.1使用方法 1.2注意事项 1.3 实际引用 2.模版特化 2.1概念 2.2函数模板特化 2.3类模板特化 2.3.1全特化 2.3.2偏特化 3.模版分离编译 ​编辑 3.1失败原因 ​编辑 3.2解决方案 4 总结 前言&…