HarmonyOS 基础组件和基础布局的介绍

1. HarmonyOS 基础组件

1.1 Text 文本组件

Text(this.message)//文本内容.width(200).height(50).margin({ top: 20, left: 20 }).fontSize(30)//字体大小.maxLines(1)// 最大行数.textOverflow({ overflow: TextOverflow.Ellipsis })// 超出显示....fontColor(Color.Black).fontWeight(FontWeight.Bold)//字重:字体加粗.onClick(() => {this.clickCount++}).textAlign(TextAlign.Center)// 文本自身居中).lineHeight(30)//行高// .textCase(TextCase.UpperCase)// 全大写.textShadow({//设置阴影radius: 5,color: Color.Gray,offsetX: 2,offsetY: 2}).fontStyle(FontStyle.Normal)//字体样式// .fontFamily($r('app.font.myfont'))//自定义字体(需在resources中添加字体文件)// 富文本
Text(){Span('点击次数: ').fontWeight(FontWeight.Bold)Span(this.clickCount.toString()).fontColor('#FF0000')
}.margin({ top: 20, left: 20 })// 装饰文本
Text('删除线示例').margin({ top: 20, left: 20 }).decoration({type: TextDecorationType.LineThrough,// type: TextDecorationType.Underline, // 下划线color: Color.Grey})

1.2 Button 按钮组件

Button('属性介绍').width(120)// 宽度(单位vp).height(40)// 高度.margin({ top: 10 })// 外边距.padding(10) // 内边距.border({//设置边框width: 2,//边框宽度color: '#FF0000',//边框颜色radius: 8 // 圆角半径}).fontSize(16)//设置文本的大小.fontColor('#FFFFFF')//文本的颜色.fontWeight(FontWeight.Bold)//自重.fontFamily('Arial')//字体// .enabled(false)// .opacity(0.5) // 透明度降低表示禁用.backgroundColor(this.isPressed ? '#000000' : '#007DFF')// .onTouch((e) => {//   this.isPressed = (e.type === TouchType.Down);// }).onClick(() => {promptAction.showToast({message: '文本带样式的按钮', duration: 1000 // 单位毫秒})})})

1.3 Image 图片组件

1.3.1 加载本地

  Row() {Text('加载本地:').margin({ top: 20 })Image($r('app.media.ic_start_icon'))// resources目录下的图片.margin({ top: 20, left: 20 }).width(50).height(50)// 填充模式:// - Cover(默认): 保持宽高比填满// - Contain: 完整显示// - Fill: 拉伸填满// - ScaleDown: 自适应缩小.objectFit(ImageFit.Cover)}.alignItems(VerticalAlign.Top)

1.3.2 加载网络

Row() {Text('加载网络:').margin({ top: 10 }) Image('https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png').margin({ top: 10, left: 20 }).width(50).height(50).alt('加载失败')// 加载失败时显示图片或文字.onComplete(() => {console.log('图片加载完成');}).onError(() => {console.log('图片加载失败');}).syncLoad(false) // 异步加载(默认)
}.alignItems(VerticalAlign.Top)

1.3.3 圆角和边框

Image($r('app.media.ic_start_icon'))// resources目录下的图片.margin({ top: 20, left: 20 }).width(40).height(40)// 填充模式:.borderRadius(40)// 圆形效果.border({width: 2,color: '#FF0000',radius: 40 // 需与宽高一致})

1.3.4 SVG加载使用的是Path

Row() {Text('SVG图片:').margin({ top: 20 })Path().margin({ top: 20, left: 20 }).width(100).height(100).commands('M10 10 L90 10 L90 90 Z')// SVG路径数据.fill('#FF0000')
}.alignItems(VerticalAlign.Top)

1.4 文本输入框

1.4.1 TextInput 单行文本输入框

@Entry
@Component
struct TextInputExample {@State text: string = '' // 存储输入内容build() {Column() {// 基础输入框TextInput({ placeholder: '请输入用户名' }).width('80%').height(50).margin(10).fontSize(16).onChange((value: string) => {console.log(`输入内容:${value}`)this.text = value // 更新状态变量})// 密码输入框TextInput({ placeholder: '请输入密码' }).type(InputType.Password) // 设置输入类型为密码.width('80%').margin(10)// 显示输入内容Text(`当前输入:${this.text}`).margin(10)}.width('100%').padding(20)}
}

1.4.2 TextArea 多行文本输入

适用于长文本场景。

@Entry
@Component
struct TextAreaExample {@State longText: string = ''build() {Column() {TextArea({ text: this.longText, placeholder: '请输入备注...' }).width('90%').height(150).margin(10).onChange((value: string) => {this.longText = value})Button('提交').onClick(() => {console.log(`提交内容:${this.longText}`)})}}
}

1.4.3 常用属性说明

1.4.3‌.1 **输入类型(type)**‌
  • InputType.Normal:默认文本
  • InputType.Number:数字键盘
  • InputType.Number:数字键盘
  • InputType.Number:数字键盘
1.4.3‌.2 ‌事件监听
  • onChange(value: string):输入内容变化时触发

  • onSubmit():按下回车键时触发

1.4.3.3 代码示例
@Entry
@Component
struct LoginForm {@State username: string = ''@State password: string = ''build() {Column() {TextField({ placeholder: '用户名' }).width('80%').margin(10).onChange((value: string) => {this.username = value})TextField({ placeholder: '密码' }).type(InputType.Password).width('80%').margin(10).onChange((value: string) => {this.password = value})Button('登录', { type: ButtonType.Capsule }).width('50%').margin(20).onClick(() => {if (this.username && this.password) {// 执行登录逻辑console.log(`登录信息:${this.username} / ${this.password}`)}})}.alignItems(HorizontalAlign.Center)}
}

2. 常用的布局组件

2.1. 线性布局

Column(垂直布局) 和 Row(水平布局)

2.1.1 通用属性

Column和Row都支持以下通用属性:

属性类型说明
widthLength设置组件宽度
heightLength设置组件高度
backgroundColorColor设置背景颜色
paddingPadding设置内边距
marginMargin设置外边距
borderBorderOptions设置边框
onClick() => void点击事件

2.1.2 对齐方式枚举值

2.1.2.1 HorizontalAlign(水平对齐)
  • Start:左对齐
  • Center:居中对齐
  • End:右对齐
2.1.2.2 VerticalAlign(垂直对齐)
  • Top:顶部对齐
  • Center:居中对齐
  • Bottom:底部对齐
2.1.2.3 FlexAlign(主轴对齐)
  • Start:起点对齐
  • Center:居中对齐
  • End:终点对齐
  • SpaceBetween:两端对齐,项目间隔相等
  • SpaceAround:每个项目两侧间隔相等
  • SpaceEvenly:项目与项目、项目与边框间隔相等

2.1.3 代码示例

import { promptAction } from '@kit.ArkUI';@Entry
@Component
struct ColumnAndRowPage {@State message: string = 'Hello World';build() {Column({ space: 20 }) { // 子组件间距// 子组件this.columnLayout()this.rowLayout()this.columnLayoutBorder()this.columnLayoutShadow()this.columnLayoutComplexBorder()}.height('100%').width('100%').justifyContent(FlexAlign.Start) // 垂直居中.alignItems(HorizontalAlign.Start) // 水平居中.backgroundColor('#F1F3F5')}@BuildercolumnLayoutComplexBorder(){Column() {Text('花式边框').fontSize(20).margin(10)Text('可以设置不同样式的边框').fontSize(16)}.width(300).height(100).border({width: {top: 3,right: 1,bottom: 3,left: 1},color: {top: '#3366FF',right: '#3366FF',bottom: '#3366FF',left: '#3366FF'},radius: {topLeft: 20,topRight: 5,bottomLeft: 5,bottomRight: 20},style: BorderStyle.Dotted // 边框样式}).margin(10).padding(10).backgroundColor('#F5F5F5')}@BuildercolumnLayoutBorder() {Column({ space: 20 }) {//Text('带边框的布局').fontSize(20);}.height(100).width(300).justifyContent(FlexAlign.Start) // 垂直居中.alignItems(HorizontalAlign.Start) // 水平居中.backgroundColor('#F1F3F5').margin(10).padding(10).border({//设置边框width: 2,color:'#FF0000',radius: 10}).shadow({radius: 10,color: '#888888',offsetX: 2,offsetY: 2})}@BuildercolumnLayoutShadow() {Column({ space: 20 }) {Text('带阴影的布局').fontSize(20);}.height(100).width(300).justifyContent(FlexAlign.Start) // 垂直居中.alignItems(HorizontalAlign.Start) // 水平居中.backgroundColor('#F1F3F5').margin(10).padding(10).border({//设置边框width: 2,color:'#FF0000',radius: 10}).shadow({radius: 10,color: '#888888',offsetX: 2,offsetY: 2})}@BuildercolumnLayout() {Column({ space: 20 }) {//Text('基础的Column').fontSize(20);}.height(50).width('100%').justifyContent(FlexAlign.Start) // 垂直居中.alignItems(HorizontalAlign.Start) // 水平居中.backgroundColor('#FFFFFF').margin(10).padding(10).onClick(() => {promptAction.showToast({ message: '垂直布局点击' });})}@BuilderrowLayout() {Row({ space: 15 }) {Text('Apple').fontSize(18)Text('Banana').fontSize(18)Text('Orange').fontSize(18)}.width(300).height(100).justifyContent(FlexAlign.SpaceBetween) // 两端对齐.alignItems(VerticalAlign.Center) // 垂直居中.backgroundColor('#EFF4FF').margin(10).padding(10).onClick(() => {promptAction.showToast({ message: '水平布局点击' });})}
}

2.2 弹性布局 Flex

Flex 是 HarmonyOS 中强大的弹性布局组件,可以灵活地控制子元素的排列方式、对齐方式和空间分配。以下是 Flex 布局的完整使用示例。

特点

  • 通过direction设置主轴方向(Row/Column)
  • 通过wrap控制是否换行
  • 适合需要自动调整的子元素布局
@Entry
@Component
struct FlexLayoutPage {@State message: string = 'Hello World';build() {Column() {this.flexGrowLayout()this.flexBasisLayout()this.responsiveNavBar()this.cardLayout()}.height('100%').width('100%').backgroundColor('#F1F3F5')}/*** 卡片是布局*/@BuildercardLayout() {Flex({ direction: FlexDirection.Row, wrap: FlexWrap.Wrap, justifyContent: FlexAlign.SpaceBetween }) {ForEach([1, 2, 3, 4, 5, 6], (item: number) => {Column() {Image($r('app.media.ic_start_icon')).width(120).height(120).objectFit(ImageFit.Cover);Text('产品' + item).margin({ top: 8 });}.width(150).height(150).padding(10).backgroundColor('#FFFFFF').margin({ bottom: 15 }).borderRadius(8).shadow({radius: 4,color: '#888888',offsetX: 2,offsetY: 2});});}.width('100%').padding(15).backgroundColor('#F5F5F5')}/*** 水平权重的布局*/@BuilderflexGrowLayout() {Flex({ direction: FlexDirection.Row }) {Text('1').flexGrow(1).height(80).backgroundColor('#FF6B81')Text('2').flexGrow(3).height(80).backgroundColor('#FF9770')Text('3').flexGrow(1).height(80).backgroundColor('#FFD670')}.margin(10).width('100%').padding(10).backgroundColor('#F5F5F5')}@BuilderflexBasisLayout() {Flex({ direction: FlexDirection.Row }) {Text('1').flexBasis('20%').height(80).backgroundColor('#FF6B81')Text('2').flexBasis('30%').height(80).backgroundColor('#FF9770')Text('3').flexBasis('50%').height(80).backgroundColor('#FFD670')}.margin(10).width('100%').padding(10).backgroundColor('#F5F5F5')}/*** 导航栏*/@BuilderresponsiveNavBar() {Flex({ direction: FlexDirection.Row }) {Text('Logo').fontSize(20).fontWeight(FontWeight.Bold).flexShrink(0)Blank() // 空白填充Flex({ direction: FlexDirection.Row }) {Text('首页').margin({ right: 15 })Text('产品').margin({ right: 15 })Text('关于').margin({ right: 15 })Text('联系')}.displayPriority(1) // 优先显示Button('登录').margin({ left: 15 }).flexShrink(0)}.width('100%').padding(10).margin(10).backgroundColor('#FFFFFF').border({ width: 1, color: '#E0E0E0' })}
}

2.3 层叠布局 Stack

@Entry
@Component
struct StackLayoutPage {build() {Stack() {Image($r('app.media.banner_pic1')) // 底层Text('标题').align(Alignment.Top) // 顶层}.width('100%').height(200)}
}

2.4 相对布局 RelativeContainer

@Entry
@Component
struct RelativeContainerPage {@State message: string = 'Hello World';build() {RelativeContainer() {Text('标题').alignRules({top: { anchor: '__container__', align: VerticalAlign.Top },left: { anchor: '__container__', align: HorizontalAlign.Start }}).id('title')Button('确定').alignRules({bottom: { anchor: '__container__', align: VerticalAlign.Bottom },right: { anchor: '__container__', align: HorizontalAlign.End }})}.height('100%').width('100%')}
}

2.5 网格布局 Grid

@Entry
@Component
struct GridLayoutPage {private items: string[] = ['苹果', '香蕉', '橙子', '西瓜', '葡萄', '芒果', '菠萝']build() {Grid() {ForEach(this.items, (item: string) => {GridItem() {Text(item)}})}.margin(20).columnsTemplate('1fr 1fr 1fr') // 3等分列.rowsTemplate('100px 100px') // 固定行高.columnsGap(10) // 列间距.rowsGap(15) // 行间}
}

2.6 列表布局 List

List 是 HarmonyOS 中用于展示长列表数据的高性能组件,支持垂直滚动、分隔线、滚动条等功能。以下是 List 组件的完整使用示例。

2.6.1 List 常用属性与方法
属性/方法类型说明
dividerDividerStyle设置分隔线样式
scrollBarBarState滚动条状态(On/Off/Auto)
edgeEffectEdgeEffect滚动边缘效果(Spring/None)
editModeboolean是否开启编辑模式
stickyHeaderboolean分组标题是否吸顶
onScroll(scrollOffset: number, scrollState: ScrollState) => void滚动事件回调
onReachStart/onReachEnd() => void到达列表开始/结束回调
onItemDelete(index: number) => boolean删除项目回调
onItemMove(from: number, to: number) => boolean项目移动回调
2.6.2 代码示例
import TestBean from '../bean/TestBean';@Entry
@Component
struct ListLayoutPage {// 正确写法@State bean: TestBean[] = [new TestBean(1, '会议通知', '今天下午3点项目评审会', '10:30'),new TestBean(2, '系统更新', '新版本v2.1.0已发布', '昨天'),new TestBean(3, '日程提醒', '明天是张经理的生日', '周一')];private data: string[] = ['苹果', '香蕉', '橙子', '西瓜', '葡萄', '芒果', '菠萝']private books: string[] = ['HarmonyOS应用开发指南','TypeScript入门与实践','深入浅出OpenHarmony','ArkUI框架解析','分布式应用开发']build() {List({ space: 5 }) {ForEach(this.bean, (item: TestBean) => {ListItem() {Column() {Row() {Text(item.title).fontSize(18).fontWeight(FontWeight.Bold)Blank() // 空白填充Text(item.time).fontSize(14).fontColor('#999999')}.width('100%')Text(item.content).fontSize(16).margin({ top: 8 }).width('100%')}.padding(15)}.borderRadius(8).margin({ top: 5, bottom: 5 }).backgroundColor('#FFFFFF')}, (item: TestBean) => item.id.toString())}.width('100%').height('100%').backgroundColor('#F7F8FA')}/*** 基础的*/@BuilderBasicListExample() {List({ space: 10 }) {ForEach(this.data, (item: string) => {ListItem() {Text(item).fontSize(18).width('100%').height(50).textAlign(TextAlign.Center).backgroundColor('#FFFFFF')}}, (item: string) => item)}.margin({ top: 40 }).width('100%').height('100%').backgroundColor('#F5F5F5')}/*** 带分割线的*/@BuilderListWithDividerExample() {List({ space: 5 }) {ForEach(this.books, (book: string) => {ListItem() {Text(book).fontSize(16).padding(15)}})}.divider({strokeWidth: 1,color: '#E0E0E0',startMargin: 15,endMargin: 15}).scrollBar(BarState.On) // 显示滚动条}/*** 复杂列表项示例*/@BuildercomplexListItemExample() {List({ space: 5 }) {ForEach(this.bean, (item: TestBean) => {ListItem() {Column() {Row() {Text(item.title).fontSize(18).fontWeight(FontWeight.Bold)Blank() // 空白填充Text(item.time).fontSize(14).fontColor('#999999')}.width('100%')Text(item.content).fontSize(16).margin({ top: 8 }).width('100%')}.padding(15)}.borderRadius(8).margin({ top: 5, bottom: 5 }).backgroundColor('#FFFFFF')}, (item: TestBean) => item.id.toString())}.width('100%').height('100%').backgroundColor('#F7F8FA')}
}

2.7 自适应布局 GridRow/GridCol

tItem() {
Column() {
Row() {
Text(item.title)
.fontSize(18)
.fontWeight(FontWeight.Bold)

          Blank() // 空白填充Text(item.time).fontSize(14).fontColor('#999999')}.width('100%')Text(item.content).fontSize(16).margin({ top: 8 }).width('100%')}.padding(15)}.borderRadius(8).margin({ top: 5, bottom: 5 }).backgroundColor('#FFFFFF')}, (item: TestBean) => item.id.toString())
}
.width('100%')
.height('100%')
.backgroundColor('#F7F8FA')

}
}


## 2.7 自适应布局 GridRow/GridCol

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

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

相关文章

FrameWork基础案例解析(四)

文章目录 单独拉取framework开机与开机动画横屏Android.mk语法单独编译SDKmake 忽略warning单独修改和编译Camera2单独编译Launcher3Android Studio 导入、修改、编译Settings导入 Android Studio 导入、修改、编译Launcher3android 开机默认进入指定Launcher植入自己的apk到系…

基于vscode(GDB)调试ros2节点

一、环境准备 必备vscode插件 1)Docker Docker - Visual Studio Marketplace 2)Dev Containers Dev Containers - Visual Studio Marketplace 3)GDB GDB Debug - Visual Studio Marketplace 二、进去docker镜像 1)docker安…

基于springboot的考研成绩查询系统(源码+lw+部署文档+讲解),源码可白嫖!

摘要 这些年随着Internet的迅速发展,我们国家和世界都已经进入了互联网大数据时代,计算机网络已经成为了整个社会以及经济发展的巨大动能,考研成绩查询管理事务现在已经成为社会关注的重要内容,因此运用互联网技术来提高考研成绩…

C++:算术运算符

程序员Amin 🙈作者简介:练习时长两年半,全栈up主 🙉个人主页:程序员Amin 🙊 P   S : 点赞是免费的,却可以让写博客的作者开心好久好久😎 📚系列专栏:Java全…

PyQt6实例_A股日数据维护工具_使用

目录 前置: 下载预备更新的数据 使用工具更新 用工具下载未复权、前复权、权息数据 在PostgreSQL添加两个数据表 工具&视频 前置: 1 本系列将以 “PyQt6实例_A股日数据维护工具” 开头放置在“PyQt6实例”专栏 2 日数据可在“数据库”专栏&…

REST 方法

FUNCTION ZFM_INTERFACE_LOG. *"---------------------------------------------------------------------- *"*"本地接口: *" IMPORTING *" REFERENCE(IV_DSTART) TYPE EDI_UPDDAT *"---------------------------------------…

QT 中的元对象系统(五):QMetaObject::invokeMethod的使用和实现原理

目录 1.简介 2.原理概述 3.实现分析 3.1.通过方法名调用方法的实现分析 3.2.通过可调用对象调用方法的实现分析 4.使用场景 5.总结 1.简介 QMetaObject::invokeMethod 是 Qt 框架中的一个静态方法,用于在运行时调用对象的成员函数。这个方法提供了一种动态调…

Unity3D开发AI桌面精灵/宠物系列 【三】 语音识别 ASR 技术、语音转文本多平台 - 支持科大讯飞、百度等 C# 开发

Unity3D 交互式AI桌面宠物开发系列【三】ASR 语音识别 该系列主要介绍怎么制作AI桌面宠物的流程,我会从项目开始创建初期到最终可以和AI宠物进行交互为止,项目已经开发完成,我会仔细梳理一下流程,分步讲解。 这篇文章主要讲有关于…

Java 状态模式 详解

状态模式详解 一、状态模式概述 状态模式(State Pattern)是一种行为型设计模式,它允许一个对象在其内部状态改变时改变它的行为,使对象看起来似乎修改了它的类。 核心特点 状态封装:将每个状态的行为封装到独立的类中状态转换&#xff1a…

Nginx 配置 HTTPS 与 WSS 完整指南

Nginx 配置 HTTPS 与 WSS 完整指南 本教程将手把手教你如何为网站配置 HTTPS 加密访问,并通过反向代理实现安全的 WebSocket(WSS)通信。以 https://www.zhegepai.cn 域名为例,完整流程约需 30 分钟完成。 一、前置准备 1.1 域名…

双向链表的理解

背景 代码中经常会出现双向链表,对于双向链表的插入和删除有对应的API函数接口,但直观的图表更容易理解,所以本文会对rt-thread内核代码中提供的双向链表的一些API函数操作进行绘图,方便后续随时查看。 代码块 rt-thread中提供…

大文件上传源码,支持单个大文件与多个大文件

大文件上传源码,支持单个大文件与多个大文件 Ⅰ 思路Ⅱ 具体代码前端--单个大文件前端--多个大文件前端接口后端 Ⅰ 思路 具体思路请参考我之前的文章,这里分享的是上传流程与源码 https://blog.csdn.net/sugerfle/article/details/130829022 Ⅱ 具体代码…

Unity中的静态合批使用整理

静态批处理是一种绘制调用批处理方法,它组合不移动的网格以减少绘制调用。它将组合的网格转换为世界空间,并为它们构建一个共享顶点和索引缓冲区。然后,对于可见网格,Unity 会执行一系列简单的绘制调用,每个调用之间几…

【机器学习中的基本术语:特征、样本、训练集、测试集、监督/无监督学习】

机器学习基本术语详解 1. 特征(Feature) 定义:数据的属性或变量,用于描述样本的某个方面。作用:模型通过学习特征与目标之间的关系进行预测。示例: 预测房价时,特征可以是 面积、地段、房龄。…

C++学习之路:指针基础

目录 指针介绍与基本用法双重指针函数指针空指针与野指针函数参数的指针传递最后 指针一般在C/C语言学习的后期接触,这样就导致指针给新手一种高深莫测、难以掌握的刻板印象。但实际上指针的使用很简单,并且还能够极大的提高程序的灵活性,帮助…

【服务日志链路追踪】

MDCInheritableThreadLocal和spring cloud sleuth 在微服务架构中,日志链路追踪(Logback Distributed Tracing) 是一个关键需求,主要用于跟踪请求在不同服务间的调用链路,便于排查问题。常见的实现方案有两种&#x…

Kafka+Zookeeper从docker部署到spring boot使用完整教程

文章目录 一、Kafka1.Kafka核心介绍:​核心架构​核心特性​典型应用 2.Kafka对 ZooKeeper 的依赖:3.去 ZooKeeper 的演进之路:注:(本文采用ZooKeeper3.8 Kafka2.8.1) 二、Zookeeper1.核心架构与特性2.典型…

JUC系列JMM学习之随笔

JUC: JUC 是 Java 并发编程的核心工具包,全称为 Java Util Concurrent,是 java.util.concurrent 包及其子包的简称。它提供了一套强大且高效的并发编程工具,用于简化多线程开发并提高性能。 CPU核心数和线程数的关系:1核处理1线程(同一时间单次) CPU内核结构: 工作内…

The Rust Programming Language 学习 (九)

泛型 每一个编程语言都有高效处理重复概念的工具。在 Rust 中其工具之一就是 泛型(generics)。泛型是具体类型或其他属性的抽象替代。我们可以表达泛型的属性,比如他们的行为或如何与其他泛型相关联,而不需要在编写和编译代码时知…

蓝桥杯 混乘数字

问题描述 混乘数字的定义如下: 对于一个正整数 n,如果存在正整数 a 和 b,使得: n a b且 a 与 b 的十进制数位中每个数字出现的次数之和,与 n 中对应数字出现的次数相同,则称 n 为混乘数字。 示例 对于…