HarmonyOS ArkUI基础学习01

以下涉及的项目源码地址: https://gitee.com/jiangqianghua/harmony-test
更多学习资源资源点我获取

1. 一些常用组件方法

  1. 加载resource/base/element/string.json资源
Text($r("app.string.Username_label"))
  1. 设置颜色
    1. Color.red
    2. “#ff00ff”
    3. 读取资源文件字体颜色 resource/base/element/color.json
.backgroundColor(Color.Red)
.backgroundColor("#00ff00")
.backgroundColor($r("app.color.start_window_background"))
  1. 超出显示省略号
Text('11222222222222333333333333333333333344').fontSize(20).textOverflow({overflow: TextOverflow.Ellipsis}).maxLines(1).width(100)
  1. Button形状
    1. 默认形状
    Button('按钮').type(ButtonType.Normal)  // 矩形// .type(ButtonType.Circle) // 圆形// .type(ButtonType.Capsule) // 胶囊
2. 自定义按钮,使用插槽方式
   Button(){Row(){LoadingProgress().width(50).height(50).color(Color.White)Text('登录').fontColor(Color.White)}}.width(120)
  1. CheckBox使用
Row(){CheckboxGroup({group: 'favor'}).selectedColor(Color.Red).height(0).onChange((value) => {console.log(JSON.stringify(value))})Text("全选/全不选")}Row(){Row(){Checkbox({group: 'favor', name: '1'})Text('篮球')}Row(){Checkbox({group: 'favor', name: '2'})Text('足球')}Row(){Checkbox({group: 'favor', name: '3'})Text('乒乓球')}}
  1. Radio组件
 Row(){Row(){Radio({group: 'favor', value: '1'}).onChange((value) => {value && console.log('1')})Text('篮球')}Row(){Radio({group: 'favor', value: '2'}).onChange((value) => {value && console.log('2')})Text('足球')}}
  1. Toggle组件
Row(){Toggle({type: ToggleType.Switch,isOn: false}).selectedColor(Color.Red)Toggle({type: ToggleType.Button,isOn: false}){Text('选择')}.selectedColor(Color.Red)Toggle({type: ToggleType.Checkbox,isOn: false}).selectedColor(Color.Red)
}
  1. Image
    // ets/images/a.jpgImage("images/a.jpg").width(100)Image($r("app.media.icon")).width(100)// 小图片是否有锯齿.interpolation(ImageInterpolation.High)// 需要访问网络权限 在modules.json5 下//    "requestPermissions": [//   {//     "name": "ohos.permission.INTERNET"//   }// ],Image("url").width(100)Image($r("app.media.icon")).objectFit(ImageFit.Auto)// 是否重复.objectRepeat(ImageRepeat.XY)// 黑白显示.renderMode(ImageRenderMode.Template).width(100)// 是否有锯齿,插值.interpolation(ImageInterpolation.High).onComplete((value) => {console.log(JSON.stringify(value))//{"width":114,"height":114,"componentWidth":300,"componentHeight":300,"loadingStatus":1}})

2. 像素单位

  1. px 物理像素
  2. vp 屏幕密度像素单位,虚拟像素 1vp约等于3px, 默认单位
  3. fp 字体像素
  4. lpx 视图逻辑像素单位,等比缩放,默认是720,1lpx为2px大小, 场景,根据ui稿高度还原使用
    lpx 默认值可以修改,修改在resource/base/profiles/main_pages.json
  "window": {"designWidth": 1440  // 1lpx = 1px, 如果屏幕真实是1280, 那么设置1440,也是撑满}
  1. 单位转换
    1. vp2px
    2. px2vp
    3. fp2vp
    4. px2fp
    5. lpx2px

3. 线性布局

    // space 子元素间距Row({space: 10}){Text('111').layoutWeight(1).backgroundColor(Color.Red)Text('222').layoutWeight(1).backgroundColor(Color.Red)Text('333').layoutWeight(1).backgroundColor(Color.Red)}

4. 空白填充组件,把空余空间占满

Blank()

5. 层叠布局

 Stack(){Text("111").width(200).height(200).backgroundColor(Color.Red)// 设置层级.zIndex(2)Text("111").width(100).height(100).backgroundColor(Color.Yellow)
}.width('100%').height(300).backgroundColor(Color.Grey)
// 控制对齐位置
.alignContent(Alignment.TopStart)

6. 获取List控制器

  private scroll: Scroller = new Scroller();...List({scroller: this.scroll})

7. 弹性布局flex

  Flex({direction: FlexDirection.Row,justifyContent: FlexAlign.Center,// Stretch 拉伸// Baseline 文本基线对其alignItems: ItemAlign.Center}){Text("111").backgroundColor(Color.Blue).width(100).height(100)Text("222").backgroundColor(Color.Pink).width(200).height(200)Text("333").backgroundColor(Color.Brown).width(200).height(200)// 孩子单独交叉轴设置.alignSelf(ItemAlign.Start)}.width('100%').height(300).backgroundColor(Color.Gray)Flex({direction: FlexDirection.Row,justifyContent: FlexAlign.Start,// Stretch 拉伸// Baseline 文本基线对其alignItems: ItemAlign.Center,// 自动换行wrap: FlexWrap.Wrap}){Text("111").backgroundColor(Color.Blue).width(400).height(100)Text("222").backgroundColor(Color.Pink).width(100).height(100)Text("333").backgroundColor(Color.Brown).width(100).height(100)// 压缩比例.flexShrink(2)// 设置权重,瓜分剩余空间.flexGrow(1)}.width('100%').height(300).backgroundColor(Color.Gray)

8. 栅格布局GridRow 和 GridCol

  1. 解决不同尺寸,动态布局的问题
  2. 支持 xs(<320vp),sm(320-520), md(520-840), lg(840-1080), xl(>1080), xxl 断点
GridRow({// 排列方向// direction: GridRowDirection.RowReverse,// 间距gutter: 10,// columns 和下面span意思是一样,但是xs:1 表示小屏是一列columns: {xs:1, sm: 2, md: 4, lg: 6, xl: 8},breakpoints: {value: ['200vp', '300vp', '400vp', '500vp', '600vp']}}){ForEach(this.bgColors, (item, index) => {GridCol({// 默认12栅格,然后按照, xs:12 表示在超小屏幕,一个col就占12栅格// span: {xs:12, sm: 6, md: 4, lg: 3, xl: 2}}){Row(){Text(`${index + 1}`)}.width('100%').height('50').backgroundColor(item)}//表示一个col占6栅格,会固定死,会使得上面span不起作用// .span(6)})}

9. 网格布局 Grid

Grid(){GridItem(){Text("111")}.style()// 横跨2列.columnStart(0).columnEnd(1)GridItem(){Text("222")}.style()// 横跨2行.rowStart(0).rowEnd(1)GridItem(){Text("333")}.style()GridItem(){Text("444")}.style()GridItem(){Text("555")}.style()GridItem(){Text("666")}.style()
}
.width('100%')
.columnsGap(10)
.rowsGap(10)
.height(200)
.rowsTemplate("1fr 1fr")
.columnsTemplate("1fr 1fr 1fr")

10. 轮播组件

@Entry
@Component
struct Page_Swiper {@State message: string = 'Hello World'private swiperController: SwiperController = new SwiperController();build() {Row() {Column() {Swiper(this.swiperController){Text("111").itemStyle().backgroundColor(Color.Red)Text("222").itemStyle().backgroundColor(Color.Blue)Text("333").itemStyle().backgroundColor(Color.Brown)}.loop(false).autoPlay(true).interval(2000).indicatorStyle({size: 20,left: 0,color: Color.White}).vertical(true).onChange(index => {// 获取当前索引console.log('index = ' + index)})Button('click').onClick(() => {this.swiperController.showPrevious();})}.width('100%')}.height('100%')}
}@Extend(Text)
function itemStyle(){.width('100%').height(200).textAlign(TextAlign.Center).fontSize(30)
}

11. List布局

@Entry
@Component
struct Page_List {@State message: string = 'Hello World'@State list: string[] = ['111', '222', '333', '444', '555', '666']private listController: Scroller = new Scroller();build() {Row() {Column() {List({space: 10, scroller: this.listController}){ForEach(this.list, (item, index) => {ListItem(){Text(item)}.width('100%').height(100).backgroundColor(Color.Yellow)// 控制每个item内容的位置.align(Alignment.Start)// 侧滑.swipeAction({end: this.itemEnd(index)})})}.height(300).width('100%').backgroundColor(Color.Blue)// 控制子元素位置.alignListItem(ListItemAlign.Center)// 滚动方向.listDirection(Axis.Vertical)// 分割线.divider({strokeWidth:2,startMargin: 10,endMargin: 10,color: Color.Red})// 滚动条显示方式.scrollBar(BarState.Auto).onScrollIndex((start, end) => {if (end === this.list.length - 1) {console.log('到底了,加载新数据')}})Button('click').onClick(() => {this.listController.scrollToIndex(0)})}.width('100%')}.height('100%')}@BuilderitemEnd(index: number){Button('删除').backgroundColor(Color.Red)}
}

12. List分组布局

@Entry
@Component
struct Page_List2 {@State message: string = 'Hello World'@State cityList: Object[] = [{type: 'A',list: ['鞍山', '安顺', '安康']},{type: 'B',list: ['北京', '保定', '包头']},{type: 'C',list: ['长春', '长沙', '常德']}]build() {Row() {Column() {List({ space: 10 }) {ForEach(this.cityList, item => {ListItemGroup({header: this.header(item.type)}){ForEach(item.list, data => {ListItem(){Text(data)}.align(Alignment.Start).width('100%').height(100)})}})}.height(300).width('100%')// 粘性.sticky(StickyStyle.Header)}.width('100%')}.height('100%')}@Builderheader(type: string) {Text(type).fontSize(30)}
}

13 Tabs容器,组件导航

@Entry
@Component
struct Page_Tabs {@State message: string = 'Hello World'build() {Row() {Column() {Tabs({// 导航位置barPosition: BarPosition.Start}){TabContent(){Text('电影列表').fontSize(30)}.tabBar('电影')TabContent(){Text('影院列表').fontSize(30)}.tabBar('影院')TabContent(){Text('个人中心').fontSize(30)}.tabBar('我的')}// 当tab较多,可以设置滑动显示.barMode(BarMode.Scrollable)// 阻止滑动切换.scrollable(false)// 滚动方向// .vertical(true)// .barWidth(100)// .barHeight(200)}.width('100%')}.height('100%')}
}

14. 自定义导航

@Entry
@Component
struct Page_Tabs {@State message: string = 'Hello World'@State currentIndex: number = 0private tabbarController: TabsController = new TabsController();@BuildertabbarItem(title: string, icon: Resource, selectedIcon: Resource, index: number){Column(){Image(this.currentIndex === index ? selectedIcon : icon).size({width: 25, height: 25})Text(title).fontColor(this.currentIndex === index ? Color.Red : Color.Black)}.width('33.33%').height(50)}build() {Row() {Column() {Tabs({controller: this.tabbarController,// 导航位置barPosition: BarPosition.End}){TabContent(){Text('电影列表').fontSize(30)}.tabBar(this.tabbarItem('电影', $r("app.media.icon"), $r("app.media.icon"), 0))TabContent(){Text('影院列表').fontSize(30)}.tabBar(this.tabbarItem('影院', $r("app.media.icon"), $r("app.media.icon"), 1))TabContent(){Text('个人中心').fontSize(30)}.tabBar(this.tabbarItem('我的', $r("app.media.icon"), $r("app.media.icon"), 2))}.onChange((index) => {this.currentIndex = index})// 当tab较多,可以设置滑动显示.barMode(BarMode.Scrollable)// 阻止滑动切换// .scrollable(false)// 滚动方向// .vertical(true)// .barWidth(100)// .barHeight(200)}.width('100%')}.height('100%')}
}

15. Navigation布局

@Entry
@Component
struct Page_Nav {@State message: string = 'Hello World'@State list:Object[] = [{title: '111',content: '111'},{title: '222',content: '222'},{title: '333',content: '333'}]build() {Navigation(){List(){ForEach(this.list, item => {ListItem(){// 可以很好的自适应大屏显示NavRouter(){Text(item.title).width('100%').height(70).backgroundColor(Color.White).borderRadius(25).fontSize(20).textAlign(TextAlign.Center)NavDestination(){Text(item.content).width('100%').height('100%').backgroundColor(Color.White)}.title(item.title).backgroundColor(Color.White)}}})}}.menus([{value: "",icon: './images/a.jpg',action: () => {console.log("search")}}]).toolBar({items: [{value: "笔记",icon: './images/a.jpg',action: () => {console.log("search")}},{value: "待办",icon: './images/a.jpg',action: () => {console.log("search")}}]}).title('全部笔记').height('100%').width('100%').titleMode(NavigationTitleMode.Mini).backgroundColor(Color.White)// 显示方式.mode(NavigationMode.Auto)}
}

15. 页面动画

  1. 页面内的动画
    1. 属性动画
// 属性动画
@Entry
@Component
struct Page_Animation2 {@State message: string = 'Hello World'@State myWidth: number = 100build() {Row() {Column() {Button('显式动画').onClick(() => {this.myWidth = 200})Text(this.message).width(this.myWidth).height(100).backgroundColor(Color.Grey).animation({duration: 1000, curve: Curve.Linear})}.width('100%')}.height('100%')}
}
  1. 显示动画
@Entry
@Component
struct Page_Animation {@State message: string = 'Hello World'@State myWidth: number = 100@State list: string[] = ['1111', '2222', '33333', '44444']build() {Row() {Column() {Button('显式动画').onClick(() => {animateTo({duration: 1000, curve: Curve.Ease}, () => {this.myWidth = 200})})Text(this.message).width(this.myWidth).height(100).backgroundColor(Color.Grey)List(){ForEach(this.list, (item, index)=>{ListItem(){this.item(item, index)}})}.backgroundColor(Color.Blue)}.width('100%')}.height('100%')}@Builderitem(item: string, index: number) {Row(){Text(item)Button('del').onClick(()=>{animateTo({duration: 1000, curve: Curve.Linear}, ()=>{this.list.splice(index, 1)})})}}
}
  1. 组件内转场动画
@Entry
@Component
struct Page_Animation3 {@State message: string = 'Hello World'@State isShow: boolean = true@State list: string[] = ['1111', '2222', '33333', '44444']build() {Row() {Column() {// Column(){//   Button('折叠/展开').onClick(()=> {//     animateTo({duration: 1000, curve: Curve.Linear}, ()=>{//       this.isShow = !this.isShow//     })//   })//   if (this.isShow) {//     Text('侧边栏')//       .width(200)//       .height(100)//       .backgroundColor(Color.Blue)//       .transition({//         type: TransitionType.All,//         translate: {x: -200, y: 0},//         opacity: 0//       })//   }// }.width("100%")// .height(300)// .backgroundColor(Color.Grey)// .alignItems(HorizontalAlign.Start)}List(){ForEach(this.list, (item, index)=>{ListItem(){this.item(item, index)}.transition({type: TransitionType.Delete,translate: {x: 200},scale: {x:0, y: 0}}).transition({type: TransitionType.Insert,translate: {y: 100}})}, item=>item)}.backgroundColor(Color.Blue).width('100%').height(400)}.height('100%')}@Builderitem(item: string, index: number) {Row(){Text(item)Button('del').onClick(()=>{animateTo({duration: 1000, curve: Curve.Linear}, ()=>{this.list.splice(index, 1)})})}}
}
  1. 页面间动画
    1. 共享元素转场动画
    2. 页面转场动画
// a页面pageTransition(){PageTransitionExit({ type: RouteType.Push, duration: 1000 }).slide(SlideEffect.Left)PageTransitionEnter({ type: RouteType.Pop, duration: 1000 }).slide(SlideEffect.Left)}// b页面pageTransition(){PageTransitionExit({ type: RouteType.Push, duration: 1000 }).slide(SlideEffect.Right)PageTransitionEnter({ type: RouteType.Pop, duration: 1000 }).slide(SlideEffect.Right)}

16. divider 用法

 .divider({strokeWidth: $r('app.float.divider_stroke_width'),color: $r('app.color.item_divider')})

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

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

相关文章

Java基础 集合(二)List详解

目录 简介 数组与集合的区别如下&#xff1a; 介绍 AbstractList 和 AbstractSequentialList Vector 替代方案 Stack ArrayList LinkedList 前言-与正文无关 生活远不止眼前的苦劳与奔波&#xff0c;它还充满了无数值得我们去体验和珍惜的美好事物。在这个快节奏的世界…

nodejs+vue+ElementUi家庭美食菜谱分享网站_in9c2

&#xff08;设计制作有一定的安全性&#xff1b;数据库方面主要采用的是MySQL来进行开发&#xff0c;其特点是稳定性好&#xff0c;数据库存储容量大&#xff0c;处理能力快等优势&#xff1b;服务器采用的是Tomcat服务&#xff0c;能够提供稳固的运行平台&#xff0c;确保系统…

JavaSE-项目小结-IP归属地查询(本地IP地址库)

一、项目介绍 1. 背景 IP地址是网络通信中的重要标识&#xff0c;通过分析IP地址的归属地信息&#xff0c;可以帮助我们了解访问来源、用户行为和网络安全等关键信息。例如应用于网站访问日志分析&#xff1a;通过分析访问日志中的IP地址&#xff0c;了解网站访问者的地理位置分…

TCP 三次握手

三次握手&#xff08;Three-way Handshake&#xff09;其实就是指建立一个TCP连接时&#xff0c;需要客户端和服务器总共发送3个包。进行三次握手的主要作用就是为了确认双方的接收能力和发送能力是否正常、指定自己的初始化序列号为后面的可靠性传送做准备。实质上其实就是连接…

Duplicate entry ‘2020045-2-1‘ for key ‘index_uid‘ 解决方案

项目场景&#xff1a; 今天小编在工作中编写接口对数据库增加相同的非主键数据的时候&#xff0c;突然出现了这样的一个错误&#xff1a; 下面我来给大家解答这个错误的出现原因以及解决办法。 问题描述 Duplicate entry 2020045-2-1 for key index_uid 这个错误大概意思就是…

企业的多域名SSL证书

多域名SSL证书作为一种加密通信的方式&#xff0c;可以有效保护多个网站的用户数据在传输过程中的安全。不管个人或者企事业单位 都可以申请多域名SSL证书&#xff0c;提高网站的安全性&#xff0c;保护网站数据传输安全。今天就随SSL盾了解多域名SSL证书旗下的企业多域名SSL证…

freertos 源码分析一 list链表数据结构

链表和任务管理是freertos 的核心&#xff0c;先分析链表源码&#xff0c;freertos的链表是双向环形链表&#xff0c;定义与数据结构在list.h中&#xff0c;表项的初始化&#xff0c;插入与删除在list.c中。 数据结构 一、表项数据结构 struct xLIST_ITEM {listFIRST_LIST_IT…

SQL题解之使用union和sum解决同时在线人数问题

现有各直播间的用户访问记录表&#xff08;live_events&#xff09;如下&#xff0c;表中每行数据表达的信息为&#xff0c;一个用户何时进入了一个直播间&#xff0c;又在何时离开了该直播间。 user_id (用户id)live_id (直播间id)in_datetime (进入直播间的时间)out_datetim…

MySql调优(一)综述

mysql的优化&#xff0c;除了硬件配置上的升级&#xff0c;还有以下一些方法 一、读写分离 二、表分区 三、拆表分为水平拆表和垂直拆表 见mybatis shardingjdbc篇。 四、SQL优化 1、新增 大数据批量新增 2、删除 delete from 删除语句加where条件&#xff0c;如果是删…

深度解读NVMe计算存储协议-3

在NVMe计算存储架构中&#xff0c;Copy命令用于在不同类型的命名空间之间进行数据复制&#xff1a; Memory Copy命令&#xff1a;定义于SLM&#xff08;Subsystem Local Memory&#xff09;命令集&#xff0c;主要用于从非易失性存储命名空间&#xff08;NVM namespaces&#x…

Jenkins插件安装推荐

Jenkins插件安装推荐 注&#xff1a; 本教程由羞涩梦整理同步发布&#xff0c;本人技术分享站点&#xff1a;blog.hukanfa.com 转发本文请备注原文链接&#xff0c;本文内容整理日期&#xff1a;2024-01-31 csdn 博客名称&#xff1a;五维空间-影子&#xff0c;欢迎关注 说…

ERP系统助力车间生产:班组、设备、工序一网打尽!实现生产全流程可视化!

​随着企业生产规模的扩大和业务复杂性的增加&#xff0c;车间管理在企业运营中的地位日益突出。ERP系统作为企业资源管理的核心平台&#xff0c;为车间管理提供了全面的解决方案。通过合理配置和使用ERP系统的功能模块&#xff0c;企业可以优化生产流程、提高生产效率、确保产…

SOME/IP SD 协议介绍(二) SOME/IP-SD消息格式

SOME/IP-SD消息格式 通用要求 服务发现消息应通过UDP进行支持。准备将服务发现消息传输到TCP中以供将来使用情况。服务发现消息应以SOME/IP头开始&#xff0c;如图1所示&#xff1a; • 服务发现消息应使用0xFFFF的Service-ID&#xff08;16位&#xff09;。 • 服务发现消息…

榜单!高阶智驾冲刺10%搭载率,哪些玩家占据自研感知「高地」

得「感知」者&#xff0c;是智能化尤其是智能驾驶技术变革快速演进期的受益者。尤其是对于车企来说&#xff0c;规控自研易&#xff0c;感知自研难。 尤其是过去几年时间&#xff0c;基于机器学习和深度学习&#xff0c;TransformerBEV技术进一步提高对异常行为的预测准确性&am…

CHS_06.2.3.4_2+用信号量实现进程互斥、同步、前驱关系

CHS_06.2.3.4_2用信号量实现进程互斥、同步、前驱关系 知识总览信号量机制实现进程互斥信号量机制实现进程同步信号量机制实现前驱关系 知识回顾 各位同学 大家好 在这个小节中 我们要学习怎么用信号量机制来实现进程的同步互制关系 知识总览 那么 我们之前学习了互斥的几种软…

每日OJ题_算法_前缀和⑦_力扣525. 连续数组

目录 力扣525. 连续数组 解析代码 力扣525. 连续数组 525. 连续数组 难度 中等 给定一个二进制数组 nums , 找到含有相同数量的 0 和 1 的最长连续子数组&#xff0c;并返回该子数组的长度。 示例 1: 输入: nums [0,1] 输出: 2 说明: [0, 1] 是具有相同数量 0 和 1 的最…

只有一台显示器,如何实现同时显示4台主机的HDMI信号?

HDMI画面分割器概述 HDMI画面分割器属于画面分割器中的一种&#xff0c;因为其信号接口是HDMI接口而得其名&#xff0c;多用于监控、多媒体、视频会议等常见的场景 HDMI画面分割器-图 HDMI画面分割器工作原理 使用硬件方式将多路HDMI信号以多种不同的模式分割显示在同一个显示…

Delphi常用的4种过程函数传递参数的方式

在Delphi中&#xff0c;有多种方式可以传递参数给过程或函数。以下是其中几种常用的方式&#xff1a; 1. 值传递&#xff08;By Value&#xff09;&#xff1a;将参数的值复制给过程或函数的形参。在过程或函数中对形参的修改不会影响实参的值。 procedure MyProc(a: Integer…

java集合面试题:说说 List,Set,Map 三者的区别?三者底层的数据结构?

List、Set和Map是Java集合框架中的三个常用接口&#xff0c;它们有以下区别&#xff1a; List&#xff1a; List是有序的集合&#xff0c;允许重复元素。可以通过索引访问元素&#xff0c;支持按照元素的插入顺序进行遍历。常见的实现类有ArrayList和LinkedList。底层数据结构…

香蕉派BPI-M7 瑞芯微RK3588 人工智能开源硬件开发板公开发售

香蕉派(Banana Pi) BPI-M7瑞芯微K3588开源硬件单板计算机公开销售&#xff0c;支持WiFi 6和BT5.2&#xff0c;硬件有3个版本:8G Ram64G eMMC, 16G Ram128 eMMC和32G Ram128 eMMC 香蕉派BPI-M7采用睿芯最新旗舰RK3588八核64位处理器&#xff0c;最高频率为2.4GHz, 6 TOPS NPU&…