《探索 HarmonyOS NEXT(5.0):开启构建模块化项目架构奇幻之旅 —— Tabs底部导航栏》

简介

通过学习HarmonyOS Next,实战项目WanAndroid 鸿蒙版,API接口均来自WanAndroid 开源接口,我们一起来做个App吧。

玩Android 开放APIhttps://www.wanandroid.com/blog/show/2

效果图

创建每个模块下的各个目录

1、features基础特性层下面的模块对应的目录


    features                                       # 基础特性层,包含独立的业务模块,如启动页、登录模块等              
    |---home                                       // 首页
    |   |---bean                                   // 数据模型
    |   |---components                             // 自定义组件
    |   |---constants                              // 常量
    |   |---model                                  // 业务模型
    |   |---service                                // 业务服务/接口
    |   |---views                                  // 视图层
    |   |---utils                                  // 此模块工具类 需要再加    
    |---login                                      // 登录
    |---question                                   // 问答
    |---scheme                                     // 体系
    |---mine                                       // 我的
    |---login                                      // 登录 

2、products产品定制层下面的模块对应的目录

    products                                       # 产品定制层,作为不同设备或场景应用入口,例如phone、tv等
    |---phone                                      // 手机
    |   |---app                                    // 全局初始化配置
    |   |---bean                                   // 数据模型
    |   |---components                             // 自定义组件 
    |   |---constants                              // 常量
    |   |---model                                  // 业务模型
    |   |---pages                                  // 页面 
    |   |---service                                // 业务服务/接口
    |   |---test                                   // 测试某个效果的例子

创建后就可以搭建了。

使用Tabs搭建底部导航栏

  • 详细使用步骤还得去官方(选项卡 (Tabs))去学习,再来看就一目了然了.

1、通过上面图一底部导航栏分为上面图片,下面是文字,选中都变颜色,定义一个对象的结构,命名为TabModel,因为后期可能为公共的,所以位置放在uicomponents模块model目录。

    export interface TabModel {
      index: number; // 下标
      title: string; // 标题
      selectImage: Resource; // 选中图片
      // unSelectImage: Resource; // 未选中图片
    }

2、组装数据,定义一个首页底部Tab数据,图片资源都在源码里。


/**
 * 首页底部Tab显示数据
 */
 
export const tabBarModel: Array<TabModel> = [
  {
    index: 0,
    title: '首页',
    selectImage: $r('app.media.ic_bottom_bar_home'),
  },
  {
    index: 1,
    title: '问答',
    selectImage: $r('app.media.ic_bottom_bar_ques'),
  },
  {
    index: 2,
    title: '体系',
    selectImage: $r("app.media.ic_bottom_bar_scheme"),
  },
  {
    index: 3,
    title: '我的',
    selectImage: $r('app.media.ic_bottom_bar_mine'),
  }

]

3、搭建Tabs

  • 定义一个选中的index
  • 设置为底部导航时,需要将barPosition设置为BarPosition.End。
  • 鼠标放到Tabs上,可以查看对应的API,很方便

  • 自定义导航栏,通过TabContent的tabBar

    Column() {
      Divider().color($r('app.color.color_F0F0F0'))
      Badge({
        count: index != 1 ? 0 : this.msgCount,
        position: BadgePosition.RightTop,
        style: {
          fontSize: 8,
          badgeSize: 13
        }
      }) {
        Image(item.selectImage /*this.selectedIndex == index ? item.selectImage : item.unSelectImage*/)
          .colorBlend(this.selectedIndex == index ? $r('app.color.colorPrimary') : $r('app.color.color_222222'))
          .height(24)
          .margin(4)
      }.margin({ top: 4 })

      Text(item.title)
        .width(CommonConst.FULL_PARENT)
        .fontSize(14)
        .fontWeight(500)
        .textAlign(TextAlign.Center)
        .fontColor(this.selectedIndex == index ? $r('app.color.colorPrimary') : $r('app.color.color_222222'))
        .margin({ bottom: 4 })
    }
    .width(CommonConst.FULL_PARENT)
    .height(CommonConst.FULL_PARENT)
    .backgroundColor($r('app.color.white'))
  • !!!选中的图片如果只是变了颜色,其实不用再单独设置一个选中的图片,可以通过Image的colorBlend来设置选中图片

4、效果为

  • 把中间内容区域换成每个模块对应的页面,分别是

@Builder
tabContentBuilder(item: TabModel) {
  if (item.index == 0) {
    // 首页
    HomeView()
  } else if (item.index == 1) {
    // 问答
    QuestionView()
  } else if (item.index == 2) {
    // 体系
    SchemeView()
  } else if (item.index == 3) {
    // 我的
    MineView()
  }

}

切换导致的问题

  • 每次切换都重新加载,这肯定对用户的体验是不好的,那我们通过存储每个页面的状态来实现,就初始化一次。

  • 定义一个数组,存储状态
    //存储页面状态
    @Local tabContentArr: boolean[] = [true, false, false, false]
  • 切换的时候状态设置为true
    .onChange((index: number) => {
      this.selectedIndex = index;
      this.tabContentArr[index] = true;
    })
  • 加载视图判断

    if (this.selectedIndex === index || this.tabContentArr[index]) {
      this.tabContentBuilder(item)
    }
  • 最终效果为

完整代码

    @Preview
    @ComponentV2
    export struct MainPage {
      @Local selectedIndex: number = 0 // 当前选中的tab下标
      @Local msgCount: number = 9 // 消息数量
      //存储页面状态
      @Local tabContentArr: boolean[] = [true, false, false, false]

      build() {
        Stack() {
          Tabs({ index: this.selectedIndex, barPosition: BarPosition.End }) {
            ForEach(tabBarModel, (item: TabModel, index: number) => {
              TabContent() {
                if (this.selectedIndex === index || this.tabContentArr[index]) {
                  this.tabContentBuilder(item)
                }
              }.tabBar(this.tabBottom(tabBarModel[item.index], item.index))
            }, (item: string) => item)

          }.barWidth(CommonConst.FULL_PARENT)
          .barHeight(56) //设置导航栏高度
          .scrollable(false) // 禁止左右滑动
          .onChange((index: number) => {
            this.selectedIndex = index;
            this.tabContentArr[index] = true;
          })
        }.width(CommonConst.FULL_PARENT)
        .height(CommonConst.FULL_PARENT)

      }

      @Builder
      tabContentBuilder(item: TabModel) {
        if (item.index == 0) {
          // 首页
          HomeView()
        } else if (item.index == 1) {
          // 问答
          QuestionView()
        } else if (item.index == 2) {
          // 体系
          SchemeView()
        } else if (item.index == 3) {
          // 我的
          MineView()
        }

      }

      @Builder
      tabBottom(item: TabModel, index: number) {
        Column() {
          Divider().color($r('app.color.color_F0F0F0'))
          Badge({
            count: index != 1 ? 0 : this.msgCount,
            position: BadgePosition.RightTop,
            style: {
              fontSize: 8,
              badgeSize: 13
            }
          }) {
            Image(item.selectImage /*this.selectedIndex == index ? item.selectImage : item.unSelectImage*/)
              .colorBlend(this.selectedIndex == index ? $r('app.color.colorPrimary') : $r('app.color.color_222222'))
              .height(24)
              .margin(4)
          }.margin({ top: 4 })

          Text(item.title)
            .width(CommonConst.FULL_PARENT)
            .fontSize(14)
            .fontWeight(500)
            .textAlign(TextAlign.Center)
            .fontColor(this.selectedIndex == index ? $r('app.color.colorPrimary') : $r('app.color.color_222222'))
            .margin({ bottom: 4 })
        }
        .width(CommonConst.FULL_PARENT)
        .height(CommonConst.FULL_PARENT)
        .backgroundColor($r('app.color.white'))

      }
    }

短时间内连续点击两次才能退出应用

  • 定义一个状态变量来记录上次点击返回键的时间
let lastBackPressedTime = 0
  • 在onBackPressed里处理
 .onBackPressed(() => {
      const currentTime = new Date().getTime()
      const timeDifference = currentTime - lastBackPressedTime
      if (timeDifference < 2000) { // 2秒内再次点击
        //退出应用
        AppUtil.exit()  // 此方法来自于大佬的 harmony-utils
      } else {
        // 提示用户
        ToastUtil.showToast('再按一次退出应用')
        lastBackPressedTime = currentTime
      }

      return true
    })

工程目录,请看README.md

https://gitee.com/jiaojiaoone/explore-harmony-next/blob/master/README.md

  • 以往系列文章
  1. 《探索 HarmonyOS NEXT(5.0):开启构建模块化项目架构奇幻之旅 —— 模块化基础篇》
  2. 《探索 HarmonyOS NEXT(5.0):开启构建模块化项目架构奇幻之旅 —— 构建基础特性层》
  3. 《探索 HarmonyOS NEXT(5.0):开启构建模块化项目架构奇幻之旅 —— 构建公共能力层》

若本文对您稍有帮助,诚望您不吝点赞,多谢。

有兴趣的同学可以点击查看源码

欢迎加我微信一起交流:+V:yinshiyuba

评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值