当前位置:   article > 正文

鸿蒙HarmonyOS项目实战:实现微信app效果(基础界面搭建)_harmonyos开发实现微信发现页

harmonyos开发实现微信发现页

最近鸿蒙HarmonyOS开发相关的消息非常的火,后续将不再支持原生Android应用,所以对于原Android应用开发对应的Harmony版本也被一系列大厂提上了日程。

本次内容是实现一个类微信app效果,计划将常规的app效果都实现一下。

功能拆分

在这里插入图片描述

 上面只是一个简单的拆分示例,当我们拿到一个功能的时候,一定要先将页面进行拆分,当我们要实现的功能通过一个个子模块实现后,最终通过子模块的拼接,就可以得到一个完整的功能。

细节实现

今天第一课,先实现整体的界面搭建,最终的实现效果如下图。

当我们点击之后,可以切换上面的tab内容界面。

Harmony提供了很多种方式可以实现底部导航栏,真实项目使用的话,大家可以直接使用系统提供的方式即可。这里我采用的方式是自己用最基础的代码实现,这样也能联系到一些想要学习的功能,开箱即用是好的,但是也很容易让我们错过很多关键知识。

实现BottomNavigationItem

我们这里整体的底部是一个BottomNavigation,他是由四个BottomNavigationItem组合实现。首先定义一个实体类,用于存贮底部导航栏对象信息。

  1. export class BottomNavigationEntity {
  2. /**
  3. * 底部导航tab标题
  4. */
  5. title: Resource;
  6. /**
  7. * 底部导航tab图片
  8. */
  9. image: Resource;
  10. /**
  11. * 底部导航tab图片,未选中
  12. */
  13. unCheckImage: Resource;
  14. /**
  15. * tab类型标志位
  16. */
  17. tag: number;
  18. constructor(tag: number, title: Resource, image: Resource, unCheckImage: Resource) {
  19. this.tag = tag;
  20. this.title = title;
  21. this.image = image;
  22. this.unCheckImage = unCheckImage;
  23. }
  24. }

接下来的

组成是一个图标+一个文字组合而成,第一反应我们应该行到Column组件。

Column组件中,用于处理组件内容对其方式使用的话flex方式。 alignItems(value: HorizontalAlign): ColumnAttribute; # 水平方向 justifyContent(value: FlexAlign): ColumnAttribute; # 垂直方向 了解了这些之后,接下来看具体BottomNavigationItem的封装代码。

  1. @Preview # 方便单个view直接预览
  2. @Component # 标记是一个组件,可供其他组件引用
  3. export default struct BottomNavigationItem {
  4. private navigationItem: BottomNavigationEntity;
  5. # 这里的Link是用于父组件和子组件进行通信
  6. @Link currentIndex: number;
  7. build() {
  8. Column({ space: 5 }) {
  9. # 这里判断如果当前选中的item是当前的这个,则使用选中状态图片
  10. Image(this.currentIndex === this.navigationItem.tag ? this.navigationItem.image : this.navigationItem.unCheckImage)
  11. .width(24)
  12. .height(24)
  13. Text(this.navigationItem.title)
  14. .fontSize(14)
  15. .fontColor(this.currentIndex === this.navigationItem.tag ? Color.Green : 0x333333)
  16. }
  17. }
  18. }

代码是不是非常简单。对于@Link你如果现在不太清楚,也没有关系,我最终会专门进行一个讲解。

实现BottomNavigation

  1. @Preview
  2. @Component
  3. export default struct BottomNavigation {
  4. @Link currentItemIndex: number;
  5. build() {
  6. Row({ space: 5 }) {
  7. // 这里通过对结合遍历,生成BottomNavigationItem进行填充BottomNavigation
  8. ForEach(navigationViewModel.getNavigationList(), (item: BottomNavigationEntity, index: number) => {
  9. # 对于这里的$currentItemIndex写法可以先将疑问留着,后续结合Link一并说明
  10. BottomNavigationItem({ navigationItem: item, currentIndex: $currentItemIndex })
  11. .onClick(() => {
  12. # 点击后更新选中的item,以实现刷新界面的效果
  13. this.currentItemIndex = index
  14. })
  15. })
  16. }
  17. .width('100%')
  18. .height(65)
  19. .padding({
  20. top: 5,
  21. bottom: 5
  22. })
  23. .justifyContent(FlexAlign.SpaceAround)
  24. .backgroundColor(0xF3EEEA)
  25. }
  26. }

实现WechatMainFrame

整体的界面组合使用RelativeContainer进行组合,将BottomNavigation固定于屏幕的底部,内容区域底部在BottomNavigation之上,顶部和屏幕顶部对其,使其填充满BottomNavigation之上的部分。内容区域使用Stack将所有的内容层叠展示,切换到哪个展示,则使用visibility方法设置该页面展示即可。

  1. @Entry
  2. @Component
  3. struct WechatMainFrame {
  4. @State currentCheckIndex: number = 0;
  5. build() {
  6. RelativeContainer() {
  7. BottomNavigation({ currentItemIndex: $currentCheckIndex })
  8. .alignRules({
  9. bottom: { anchor: "__container__", align: VerticalAlign.Bottom },
  10. left: { anchor: "__container__", align: HorizontalAlign.Start }
  11. })
  12. .id("bottomNavigation")
  13. Stack() {
  14. HomeFragment().visibility(this.currentCheckIndex == 0 ? Visibility.Visible : Visibility.Hidden)
  15. ContactFragment().visibility(this.currentCheckIndex == 1 ? Visibility.Visible : Visibility.Hidden)
  16. DiscoverFragment().visibility(this.currentCheckIndex == 2 ? Visibility.Visible : Visibility.Hidden)
  17. MeFragment().visibility(this.currentCheckIndex == 3 ? Visibility.Visible : Visibility.Hidden)
  18. }
  19. .width('100%')
  20. .height('100%')
  21. .alignRules({
  22. left: { anchor: "__container__", align: HorizontalAlign.Start },
  23. right: { anchor: "__container__", align: HorizontalAlign.End },
  24. bottom: { anchor: "bottomNavigation", align: VerticalAlign.Top },
  25. top: { anchor: "__container__", align: VerticalAlign.Top }
  26. })
  27. .id("contentPanel")
  28. }
  29. .width('100%').height('100%')
  30. }
  31. }

入口页面EntryAbility

  1. export default class EntryAbility extends UIAbility {
  2. ...
  3. onWindowStageCreate(windowStage: window.WindowStage) {
  4. // Main window is created, set main page for this ability
  5. hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageCreate');
  6. windowStage.loadContent('pages/WechatMainFrame', (err, data) => {
  7. if (err.code) {
  8. hilog.error(0x0000, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err) ?? '');
  9. return;
  10. }
  11. hilog.info(0x0000, 'testTag', 'Succeeded in loading the content. Data: %{public}s', JSON.stringify(data) ?? '');
  12. });
  13. }
  14. ...

至此整个页面的框架结构完成了。

关于@Link相关的说明

我们对于视图更新,可以使用@State 标记变量,但是@State不能进行跨文件使用。这个时候@Link的实现就弥补了@State的不足。使用@Link的话。子组件中被@Link装饰的变量与其父组件中对应的数据源建立双向数据绑定。

  • @Link装饰的变量与其父组件中的数据源共享相同的值。
  • @Link装饰器不能在@Entry装饰的自定义组件中使用。
  • @Link子组件从父组件初始化@State的语法为Comp({ aLink: this.aState })。同样Comp({aLink: $aState})也支持。

下面我们回到上面的代码中。结合代码进行分析。 当我们在BottomNavigation.onClick(() => { this.currentItemIndex = index })在点击之后,会更改@Link currentItemIndex: number;触发界面ui的更改。而BottomNavigationItem({ navigationItem: item, currentIndex: $currentItemIndex })中,我们需要把选中的item的index值传递给BottomNavigationItem本身。而作为传递的值,则需要使用\$标记。这样点击之后会将BottomNavigationItem的值也触发更改,以达到更改布局效果。BottomNavigationItem\的判断也会根据这个值变化而变化。

点击之后,除了对BottomNavigation的状态更新之外,还需要对内容区域进行判断展示不同的界面。因此BottomNavigation@Link currentItemIndex: number;又要和WechatMainFrame @State currentCheckIndex: number = 0;进行双向绑定BottomNavigation({ currentItemIndex: $currentCheckIndex })。最终当我们点击BottomNavigationonclick的时候,就会向上和WechatMainFrame双向绑定更改内容区域,也会和BottomNavigationItem双向绑定更改底部导航展示。


最后,有很多小伙伴不知道学习哪些鸿蒙开发技术?不知道需要重点掌握哪些鸿蒙应用开发知识点?而且学习时频繁踩坑,最终浪费大量时间。所以有一份实用的鸿蒙(Harmony NEXT)资料用来跟着学习是非常有必要的。 

为了能够帮助大家快速掌握鸿蒙(Harmony NEXT)应用开发技术知识。在此给大家分享一下我结合鸿蒙最新资料整理出来的鸿蒙南北向开发学习路线以及整理的最新版鸿蒙学习文档资料。

这份鸿蒙(Harmony NEXT)资料包含了鸿蒙开发必掌握的核心知识要点,内容包含了ArkTS、ArkUI开发组件、Stage模型、多端部署、分布式应用开发、音频、视频、WebGL、OpenHarmony多媒体技术、Napi组件、OpenHarmony内核、Harmony南向开发、鸿蒙项目实战等等)鸿蒙(Harmony NEXT)技术知识点。

希望这一份鸿蒙学习资料能够给大家带来帮助,有需要的小伙伴自行领取,限时开源,先到先得~无套路领取!!

如果你是一名有经验的资深Android移动开发、Java开发、前端开发、对鸿蒙感兴趣以及转行人员,可以直接领取这份资料

 获取这份完整版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料

鸿蒙(Harmony NEXT)最新学习路线

  •  HarmonOS基础技能

  • HarmonOS就业必备技能 
  •  HarmonOS多媒体技术

  • 鸿蒙NaPi组件进阶

  • HarmonOS高级技能

  • 初识HarmonOS内核 
  • 实战就业级设备开发

 有了路线图,怎么能没有学习资料呢,小编也准备了一份联合鸿蒙官方发布笔记整理收纳的一套系统性的鸿蒙(OpenHarmony )学习手册(共计1236页)鸿蒙(OpenHarmony )开发入门教学视频,内容包含:ArkTS、ArkUI、Web开发、应用模型、资源分类…等知识点。

获取以上完整版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料

《鸿蒙 (OpenHarmony)开发入门教学视频》

《鸿蒙生态应用开发V2.0白皮书》

图片

《鸿蒙 (OpenHarmony)开发基础到实战手册》

OpenHarmony北向、南向开发环境搭建

图片

 《鸿蒙开发基础》

  • ArkTS语言
  • 安装DevEco Studio
  • 运用你的第一个ArkTS应用
  • ArkUI声明式UI开发
  • .……

图片

 《鸿蒙开发进阶》

  • Stage模型入门
  • 网络管理
  • 数据管理
  • 电话服务
  • 分布式应用开发
  • 通知与窗口管理
  • 多媒体技术
  • 安全技能
  • 任务管理
  • WebGL
  • 国际化开发
  • 应用测试
  • DFX面向未来设计
  • 鸿蒙系统移植和裁剪定制
  • ……

图片

《鸿蒙进阶实战》

  • ArkTS实践
  • UIAbility应用
  • 网络案例
  • ……

图片

 获取以上完整鸿蒙HarmonyOS学习资料,请点击→纯血版全套鸿蒙HarmonyOS学习资料

总结

总的来说,华为鸿蒙不再兼容安卓,对中年程序员来说是一个挑战,也是一个机会。只有积极应对变化,不断学习和提升自己,他们才能在这个变革的时代中立于不败之地。 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/541717
推荐阅读
相关标签
  

闽ICP备14008679号