• 鸿蒙tabbar ArkTS


    鸿蒙tabbar ArkTS

    做了仿照现在应用的做了一个tabbar。

    官方文档地址
    参考文档

    请添加图片描述

    tabbar

    其中有个比较重要的点是,对image资源的引用问题。

    资源相关说明

    图片是resources目录下的base目录下的。

    请添加图片描述

    media目录下的图片的资源不能添加文件夹,只能是文件,而且文件的命名规则是只能包含字母大小写和下划线。

    另外{资源引用的方式](https://developer.harmonyos.com/cn/docs/documentation/doc-references-V3/ts-types-0000001477981241-V3)

    请添加图片描述

    要求资源定义的内容必须在编码阶段确定,中间不能更改,因此不能增加if之类的判断,只能把整个资源引用当做参数传递进去。

    实现代码如下:

    @Entry
    @Component
    struct Index {
      @State message: string = 'Hello World'
      @State selectedIndex: number = 0
    
      @Builder TabBuider(index: number, name: string, selectedImage: Resource, normalImage: Resource) {
        Column() {
          if ( this.selectedIndex == index) {
            Image(selectedImage)
              .objectFit(ImageFit.Contain)
              .width(24)
              .height(24)
              .margin({bottom: '4lpx'})
          } else {
            Image(normalImage)
              .objectFit(ImageFit.Contain)
              .width(24)
              .height(24)
              .margin({bottom: '4lpx'})
          }
    
          Text(name)
            .fontSize(16)
        }
        .border({
          width: {top: '2lpx'},
          color: '#efefef',
          style: BorderStyle.Solid
        })
        .width('100%')
        .height('100%')
        .justifyContent(FlexAlign.Center)
      }
    
      build() {
        Tabs({barPosition: BarPosition.End}) {
          TabContent() {
            Text(this.message)
          }
          .tabBar(this.TabBuider(0, "首页", $r('app.media.tabbar_home_selected'), $r('app.media.tabbar_home')))
    
          TabContent() {
            Text(this.message)
          }
          .tabBar(this.TabBuider(1, "数据", $r('app.media.tabbar_data_selected'), $r('app.media.tabbar_data')))
    
          TabContent() {
            Text(this.message)
          }
          .tabBar(this.TabBuider(2, "我的", $r('app.media.tabbar_mine_selected'), $r('app.media.tabbar_mine')))
        }.onChange(index=>{
          this.selectedIndex = index
        })
      }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
  • 相关阅读:
    足底筋膜炎最好的恢复办法
    linux小技巧-如何修改IP(四种方法)
    Java-String类
    【医学分割】unet3+
    QT--day2
    笔记,ASCII和unicode
    风辞远的科技茶屋:可怖的AI
    微信小程序图书管理系统
    Node.js躬行记(23)——Worker threads
    【LeetCode】No.103. Binary Tree Zigzag Level Order Traversal -- Java Version
  • 原文地址:https://blog.csdn.net/xo19882011/article/details/133840088