HarmonyOS 布局实践1 常用TitleBar实现

诗林  金牌会员 | 2024-10-19 23:38:00 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 517|帖子 517|积分 1551

往期知识点整理



  • 鸿蒙(HarmonyOS)北向开辟知识点记载~
  • 被裁人后,踏上了鸿蒙开辟求职之路
  • 连续更新中……
配景

TitleBar是日常开辟中最常用的组件,每个应用可能拥有不同的风格,但是整体样式不外乎三块地区:

  • 左侧返回地区
  • 中间标题地区
  • 右侧按钮地区
下面截取了我的华为应用的TitleBar效果图:

微信内容地区居中,我的华为内容地区靠左。在我们实际的开辟中可能这两种情况都会遇到,我们封装一个TitleBar实现下面功能:

  • 最左侧支持返回按钮 + 文案
  • 右侧可以最多有两个按钮
  • 中间标题内容地区可以自顺应占位,不要超过左侧和右侧地区,可以控制居左或者居中
布局容器选择

整体效果两边固定中间撑开,在Android中我们首先想到RelativeLayout,HarmonyOS 也提供了雷同的相对布局RelativeContainer。RelativeContainer支持容器内部的子元素设置相对位置关系,实用于界面复杂场景的情况,对多个子组件进行对齐和排列。子元素支持指定兄弟元素作为锚点,也支持指定父容器作为锚点,基于锚点做相对位置布局。
RelativeContainer提供了锚点和对齐方式两种概念:


  • 锚点:通过锚点设置当前元素基于哪个元素确定位置。锚点设置是指设置子元素相对于父元素或兄弟元素的位置依赖关系。在水平方向上,可以设置left、middle、right的锚点。在竖直方向上,可以设置top、center、bottom的锚点。必须为RelativeContainer及其子元素设置ID,用于指定锚点信息。RelativeContainer布局ID默认为“container”,其余子元素的ID通过id属性设置。不设置id的组件能显示,但是不能被其他子组件作为锚点,相对布局容器会为其拼接id,此id的规律无法被应用感知,以是无法直接使用。
  • 对齐方式:通过对齐方式,设置当前元素是基于锚点的上中下对齐,还是基于锚点的左中右对齐。
注意:不要相互依赖,环形依赖时会导致容器内子组件全部不绘制。同方向上两个以上位置设置锚点,但锚点位置逆序时此子组件大小为0,即不绘制。
布局实现

父布局使用RelativeContainer,然后左右分别设置按钮相对父布局的左侧和右侧,中间容器分别相对左右布局的右左,整体布局如下:
  1. build() {  
  2.   RelativeContainer() {  
  3.     Text('左侧')  
  4.       .fontSize(10)  
  5.       .fontWeight(FontWeight.Bold)  
  6.       .id("base_title_left_container")  
  7.       .alignRules({  
  8.         bottom: { anchor: "__container__", align: VerticalAlign.Bottom },  
  9.         left: { anchor: "__container__", align: HorizontalAlign.Start }  
  10.       })  
  11.     Text('右侧')  
  12.         .fontSize(10)  
  13.         .fontWeight(FontWeight.Bold)  
  14.     .id("base_title_right_container")  
  15.       .alignRules({  
  16.         bottom: { anchor: "__container__", align: VerticalAlign.Bottom },  
  17.         right: { anchor: "__container__", align: HorizontalAlign.End }  
  18.       })  
  19.       // .backgroundColor('#00ff00')  
  20.     Row(){  
  21.       Text('中间内容')  
  22.         .fontSize(10)  
  23.         .fontWeight(FontWeight.Bold)  
  24.     }.alignRules({  
  25.       bottom: { anchor: "__container__", align: VerticalAlign.Bottom },  
  26.       left: { anchor: "base_title_left_container", align: HorizontalAlign.End },  
  27.       right: { anchor: "base_title_right_container", align: HorizontalAlign.Start }  
  28.     }).backgroundColor('#ff0000')  
  29.   }  
  30.   .height('40')  
  31.   .width('100%')  
  32.   .backgroundColor('#ccc')  
  33.   .margin({top:100})  
  34. }
复制代码
展示效果如下:

符合预期。右侧要展示两个按钮时,我们用一个容器给包裹起来:
  1. build() {  
  2.   RelativeContainer() {  
  3.     Text('左侧')  
  4.       .fontSize(10)  
  5.       .fontWeight(FontWeight.Bold)  
  6.       .id("base_title_left_container")  
  7.       .alignRules({  
  8.         bottom: { anchor: "__container__", align: VerticalAlign.Bottom },  
  9.         left: { anchor: "__container__", align: HorizontalAlign.Start }  
  10.       })  
  11.     Flex({ justifyContent: FlexAlign.End, alignItems: ItemAlign.Center }) {  
  12.       Text('右侧2')  
  13.         .fontSize(10)  
  14.         .fontWeight(FontWeight.Bold)  
  15.       Text('右侧1')  
  16.         .fontSize(10)  
  17.         .fontWeight(FontWeight.Bold)  
  18.     }  
  19.     .id("base_title_right_container")  
  20.       .alignRules({  
  21.         bottom: { anchor: "__container__", align: VerticalAlign.Bottom },  
  22.         right: { anchor: "__container__", align: HorizontalAlign.End }  
  23.       })  
  24.       // .backgroundColor('#00ff00')  
  25.     Row(){  
  26.       Text('中间内容')  
  27.         .fontSize(10)  
  28.         .fontWeight(FontWeight.Bold)  
  29.     }.alignRules({  
  30.       bottom: { anchor: "__container__", align: VerticalAlign.Bottom },  
  31.       left: { anchor: "base_title_left_container", align: HorizontalAlign.End },  
  32.       right: { anchor: "base_title_right_container", align: HorizontalAlign.Start }  
  33.     }).backgroundColor('#ff0000')  
  34.   }  
  35.   .height('40')  
  36.   .width('100%')  
  37.   .backgroundColor('#ccc')  
  38.   .margin({top:100})  
  39. }
复制代码
效果:

发现中间内容不展示了,给右侧容器增加配景致后:

发现右侧布局占满了整个宽度,怎么回事呢? 原来是Flex不能自顺应子节点,我们换成另一个容器Row后:
  1. build() {  
  2.   RelativeContainer() {  
  3.     Text('左侧')  
  4.       .fontSize(10)  
  5.       .fontWeight(FontWeight.Bold)  
  6.       .id("base_title_left_container")  
  7.       .alignRules({  
  8.         bottom: { anchor: "__container__", align: VerticalAlign.Bottom },  
  9.         left: { anchor: "__container__", align: HorizontalAlign.Start }  
  10.       })  
  11.     Row() {  
  12.       Text('右侧2')  
  13.         .fontSize(10)  
  14.         .fontWeight(FontWeight.Bold)  
  15.       Text('右侧1')  
  16.         .fontSize(10)  
  17.         .fontWeight(FontWeight.Bold)  
  18.     }  
  19.     .id("base_title_right_container")  
  20.       .alignRules({  
  21.         bottom: { anchor: "__container__", align: VerticalAlign.Bottom },  
  22.         right: { anchor: "__container__", align: HorizontalAlign.End }  
  23.       })  
  24.       .backgroundColor('#00ff00')  
  25.     Row(){  
  26.       Text('中间内容')  
  27.         .fontSize(10)  
  28.         .fontWeight(FontWeight.Bold)  
  29.     }.alignRules({  
  30.       bottom: { anchor: "__container__", align: VerticalAlign.Bottom },  
  31.       left: { anchor: "base_title_left_container", align: HorizontalAlign.End },  
  32.       right: { anchor: "base_title_right_container", align: HorizontalAlign.Start }  
  33.     }).backgroundColor('#ff0000')  
  34.   }  
  35.   .height('40')  
  36.   .width('100%')  
  37.   .backgroundColor('#ccc')  
  38.   .margin({top:100})  
  39. }
复制代码
效果恢复正常:

总结

本文以常用Titlebar控件的布局方式先容了HarmonyOS常用的相对布局RelativeContainer的特性和属性。而且先容了Flex与Row布局的一个自顺应子节点本领的区别:Row可以自顺应子节点宽度,Flex不可以,会撑满整个父布局宽度。
末了

总是有很多小伙伴反馈说:鸿蒙开辟不知道学习哪些技能?不知道需要重点掌握哪些鸿蒙开辟知识点? 为了解决大家这些学习烦恼。在这准备了一份很实用的鸿蒙全栈开辟学习路线与学习文档给大家用来跟着学习。
针对一些列因素,整理了一套纯血版鸿蒙(HarmonyOS Next)全栈开辟技能的学习路线,包含了鸿蒙开辟必掌握的核心知识要点,内容有(OpenHarmony多媒体技能、Napi组件、OpenHarmony内核、OpenHarmony驱动开辟、系统定制移植……等)技能知识点。

《鸿蒙 (Harmony OS)开辟学习手册》(共计892页):https://gitcode.com/HarmonyOS_MN/733GH/overview

如何快速入门?

1.基本概念
2.构建第一个ArkTS应用
3.……

鸿蒙开辟口试真题(含参考答案):


《OpenHarmony源码解析》:



  • 搭建开辟情况
  • Windows 开辟情况的搭建
  • Ubuntu 开辟情况搭建
  • Linux 与 Windows 之间的文件共享
  • ……
  • 系统架构分析
  • 构建子系统
  • 启动流程
  • 子系统
  • 分布式任务调度子系统
  • 分布式通讯子系统
  • 驱动子系统
  • ……

OpenHarmony 装备开辟学习手册:https://gitcode.com/HarmonyOS_MN/733GH/overview



免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

诗林

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表