HarmonyOS NEXT 实战之元服务:静态案例效果(二)

背景:

前几篇学习了元服务,后面几期就让我们开发简单的元服务吧,里面丰富的内容大家自己加,本期案例 仅供参考

先上本期效果图 ,里面图片自行替换

在这里插入图片描述

效果图代码案例如下:

  • Index里面实现
import { authentication } from '@kit.AccountKit';
import { BusinessError } from '@kit.BasicServicesKit';
import { hilog } from '@kit.PerformanceAnalysisKit';
import { AddressExchangeViewComponent } from './AddressExchangeViewComponent';


export const DATA_CONFIG: Record<string, number> = {
  'NUMBER_LEN': 7, // 数字个数
  'DURATION_TIME': 200, // 动画时长
  'MILLENNIAL_LEN': 3 // 千分位长度
}

export const STYLE_CONFIG: Record<string, number> = {
  'ITEM_GUTTER': 12, // 元素间距
  'ITEM_HEIGHT': 26, // 数字元素高度
  'TEXT_MARGIN': 2, // 文本间距
  'PADDING_TOP': 32  // 顶部边距
}



@Entry
@Component
struct Index {
  build() {
    Column({ space: STYLE_CONFIG.ITEM_GUTTER }) {
      Text($r('app.string.EntryAbility_label')).fontColor(Color.White)
        .fontSize($r('sys.float.ohos_id_text_size_headline8'))
        .width($r('app.string.digital_scroll_animation_max_size'))
        .textAlign(TextAlign.Start)
        .margin({left:25})
      Row({ space: 10 }) {
        Text(this.getDate())
          .fontSize($r('app.string.ohos_id_text_size_headline'))
          .fontWeight(FontWeight.Medium)
          .height(30)
          .fontColor(Color.White)
        Text('天气  多云 18℃')
          .height(30)
      }
      .width('100%').margin({left:15})


      AddressExchangeViewComponent()
    }
    .padding({
      top: STYLE_CONFIG.PADDING_TOP
    })
    .margin({ top: 60 })
    .width($r('app.string.digital_scroll_animation_max_size'))
    .height($r('app.string.digital_scroll_animation_max_size'))
    .linearGradient({
      colors: [[$r('app.color.digital_scroll_animation_background_color'), 0.0],
        [$r('sys.color.ohos_id_color_background'), 0.3]]
    })

  }

  aboutToAppear() {
    hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onCreate');
    this.loginWithHuaweiID();
  }

  /**
   * Sample code for using HUAWEI ID to log in to atomic service.
   * According to the Atomic Service Review Guide, when a atomic service has an account system,
   * the option to log in with a HUAWEI ID must be provided.
   * The following presets the atomic service to use the HUAWEI ID silent login function.
   * To enable the atomic service to log in successfully using the HUAWEI ID, please refer
   * to the HarmonyOS HUAWEI ID Access Guide to configure the client ID and fingerprint certificate.
   */
  private loginWithHuaweiID() {
    // Create a login request and set parameters
    let loginRequest = new authentication.HuaweiIDProvider().createLoginWithHuaweiIDRequest();
    // Whether to forcibly launch the HUAWEI ID login page when the user is not logged in with the HUAWEI ID
    loginRequest.forceLogin = false;
    // Execute login request
    let controller = new authentication.AuthenticationController();
    controller.executeRequest(loginRequest).then((data) => {
      let loginWithHuaweiIDResponse = data as authentication.LoginWithHuaweiIDResponse;
      let authCode = loginWithHuaweiIDResponse.data?.authorizationCode;
      // Send authCode to the backend in exchange for unionID, session

    }).catch((error: BusinessError) => {
      hilog.error(0x0000, 'testTag', 'error: %{public}s', JSON.stringify(error));
      if (error.code == authentication.AuthenticationErrorCode.ACCOUNT_NOT_LOGGED_IN) {
        // HUAWEI ID is not logged in, it is recommended to jump to the login guide page

      }
    });
  }

  private getDate() {
    const now = new Date();
    const year = now.getFullYear();
    const month = now.getMonth() + 1; // 注意:月份是从0开始计数的
    const day = now.getDate();
    const hours = now.getHours();
    const minutes = now.getMinutes();
    const seconds = now.getSeconds();
    return `${year} 年 ${month} 月 ${day} 日`
  }
}

  • AddressExchangeViewComponent 里面实现
import { promptAction } from "@kit.ArkUI"

@Preview
@Component
export struct AddressExchangeViewComponent {

  build() {

    Column({ space: 16 }) {

      Row() {
        Text('附近汽车租赁门店')
          .fontSize(18)
          .fontColor(Color.Black)

        Text('查看更多>')
          .fontSize(15)
          .fontColor(Color.Black)
      }.justifyContent(FlexAlign.SpaceBetween).width('100%').padding(10).onClick(() => {
      })

      Row({ space: 20 }) {
        Column({ space: 10 }) {
          Text() {
            Span('小王汽车租赁门店')
          }.fontWeight(FontWeight.Bold).fontSize(13)

          Row({space:4}) {
            Image($r('app.media.weizhi')).width(18).height(18)
            Text('距离1.02km').fontSize(10).fontColor('#5EB761')
          }

          Text('预计3分钟路程').fontSize(10).fontColor('#2EB59F')
        }
        .width('40%')
        .borderRadius(4)
        .backgroundColor('#F5F9F8')
        .padding(8)
        .alignItems(HorizontalAlign.Start)

        Column({ space: 10 }) {
          Text() {
            Span('小贾汽车租赁门店')
          }.fontWeight(FontWeight.Bold).fontSize(13)

          Row({space:4}) {
            Image($r('app.media.weizhi')).width(18).height(18)
            Text('距离5km').fontSize(10).fontColor('#5EB761')
          }

          Text('预计23分钟路程').fontSize(10).fontColor('#2EB59F')
        }
        .width('40%')
        .borderRadius(4)
        .backgroundColor('#F5F9F8')
        .padding(8)
        .alignItems(HorizontalAlign.Start)
      }
      Row({ space: 20 }) {
        Column({ space: 10 }) {
          Text() {
            Span('小明汽车租赁门店')
          }.fontWeight(FontWeight.Bold).fontSize(13)

          Row({space:4}) {
            Image($r('app.media.weizhi')).width(18).height(18)
            Text('距离1.02km').fontSize(10).fontColor('#5EB761')
          }

          Text('预计3分钟路程').fontSize(10).fontColor('#2EB59F')
        }
        .width('40%')
        .borderRadius(4)
        .backgroundColor('#F5F9F8')
        .padding(8)
        .alignItems(HorizontalAlign.Start)

        Column({ space: 10 }) {
          Text() {
            Span('小朱汽车租赁门店')
          }.fontWeight(FontWeight.Bold).fontSize(13)

          Row({space:4}) {
            Image($r('app.media.weizhi')).width(18).height(18)
            Text('距离5km').fontSize(10).fontColor('#5EB761')
          }

          Text('预计23分钟路程').fontSize(10).fontColor('#2EB59F')
        }
        .width('40%')
        .borderRadius(4)
        .backgroundColor('#F5F9F8')
        .padding(8)
        .alignItems(HorizontalAlign.Start)
      }
      Button($r('app.string.EntryAbility_label'))
        .fontColor(Color.White)
        .height(40)
        .backgroundColor('#5EB761')
        .width(200)
        .onClick(() => {
          promptAction.showToast({
            message: '今日机器出现故障,请找工作室人员解决'
          });
        })


      Row() {
        Text('我的服务')
          .fontSize(18)
          .fontColor(Color.Black)

        Text('查看更多 >')
          .fontSize(15)
          .fontColor(Color.Black)
      }.justifyContent(FlexAlign.SpaceBetween).width('100%').padding(10).onClick(() => {
      })

      Column() {
        Row() {
          this.msgRelated($r('app.media.j1'), '我的优惠', () => {

          })
          this.msgRelated($r('app.media.j3'), '邀请有奖', () => {

          })
          this.msgRelated($r('app.media.j4'), '收藏/看过', () => {

          })

        }
        .width('95%')
        .height(80)
        .margin({
          top: 10,
          left: 12,
          right: 12
        })
        .backgroundColor(Color.White)
        .justifyContent(FlexAlign.SpaceAround)

      }
      .width('95%')
      .height(80)
      .margin({
        top: 10,
        bottom: 4,
        left: 12,
        right: 12
      })
      .borderRadius(10)
      .borderWidth(1)
      .borderColor('#35B6BD')
      .backgroundColor(Color.White)
      .justifyContent(FlexAlign.SpaceAround)




    }
    .width($r('app.string.address_exchange_content_size'))
    .height(178)
    .margin($r('app.string.ohos_id_card_margin_start'))
  }

  //消息相关
  @Builder
  msgRelated(src: Resource, title: string, onClick?: () => void) {
    Column() {
      Image(src).width(24)
      Text(title).fontSize(11).fontColor('#222222').margin({ top: 8 })
    }.onClick(() => {
      onClick?.()
    })

  }

}

最近文章>>>>>>>>>>>

HarmonyOS NEXT实战:元服务与应用 APP 发布应用市场的详细步骤与流程

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

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

  • gitee:https://gitee.com/jiaojiaoone/explore-harmony-next/tree/case%2Fwanandroid/
  • github:https://github.com/JasonYinH/ExploreHarmonyNext.git

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

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

EndtoEnd Object Detection with Transformers

全文摘要 本文介绍了一种新的物体检测方法——DETR&#xff08;DEtection TRansformer&#xff09;&#xff0c;该方法将物体检测视为直接的集合预测问题&#xff0c;并通过使用基于transformer的编码器解码器架构和一种集 论文方法 方法描述 该论文提出了一种名为DETR&…

第二十六周机器学习笔记:PINN求正反解求PDE文献阅读——正问题

第二十六周周报 摘要Abstract文献阅读《Physics-informed neural networks: A deep learning framework for solving forward and inverse problems involving nonlinear partial differential equations》1. 引言2. 问题的设置3.偏微分方程的数据驱动解3.1 连续时间模型3.1.1 …

CAN201 Introduction to Networking(计算机网络)Pt.2 传输层

文章目录 3. Transport Layer&#xff08;传输层&#xff09;3.1 Multiplexing and demultiplexing&#xff08;多路复用和多路分解&#xff09;3.2 Connectionless transport&#xff1a;UDP3.3 Principles of reliable data transfer3.4 Pipelined communication3.5 TCP: con…

Docker 部署 SpringBoot VUE项目

是一套基于若依的wms仓库管理系统 一、后端部署 后端地址&#xff1a;https://gitee.com/zccbbg/wms-ruoyi/tree/v1/ 1、用IDEA拉代码&#xff0c;并修改API统一后缀 2、复制一个配置文件 application-dev.yaml&#xff0c;并修改里面的mysql与redis配置 3、将打包的jar上传…

2024年12月一区SCI-加权平均优化算法Weighted average algorithm-附Matlab免费代码

引言 本期介绍了一种基于加权平均位置概念的元启发式优化算法&#xff0c;称为加权平均优化算法Weighted average algorithm&#xff0c;WAA。该成果于2024年12月最新发表在中JCR1区、 中科院1区 SCI期刊 Knowledge-Based Systems。 在WAA算法中&#xff0c;加权平均位置代表当…

Java处理视频思路

1.首先实现断点续传功能。 断点续传实现思路&#xff1a; 前端对文件分块。前端使用多线程一块一块上传&#xff0c;上传前给服务端发一个消息校验该分块是否上传&#xff0c;如果已上传则不再上传。如果从该断点处断网了&#xff0c;下次上传时&#xff0c;前面的分块已经存在…

Redis数据对象

基本结构图 key和value指向的是redisObject对象 type&#xff1a;标识该对象用的是什么类型&#xff08;String、List Redis数据结构 SDS SDS有4个属性&#xff1a; len&#xff1a;记录了字符串长度&#xff0c;因此获取字符串长度的时候时间复杂度O&#xff08;1&#xff…

微积分复习笔记 Calculus Volume 2 - 5.2 | Infinite Series

5.2 Infinite Series - Calculus Volume 2 | OpenStax

鸿蒙系统文件管理基础服务的设计背景和设计目标

有一定经验的开发者通常对文件管理相关的api应用或者底层逻辑都比较熟悉&#xff0c;但是关于文件管理服务的设计背景和设计目标可能了解得不那么清楚&#xff0c;本文旨在分享文件管理服务的设计背景及目标&#xff0c;方便广大开发者更好地理解鸿蒙系统文件管理服务。 1 鸿蒙…

python学opencv读取图像(十四)BGR图像和HSV图像通道拆分

【1】引言 前序已经对BGR图像和HSV图像的转换进行了基本讨论&#xff0c;相关文章链接为&#xff1a; python学opencv|读取图像&#xff08;十二&#xff09;BGR图像转HSV图像-CSDN博客 python学opencv|读取图像&#xff08;十三&#xff09;BGR图像和HSV图像互相转换深入-C…

Linux运维常见命令

vi/vim快捷键使用 1)拷贝当前行 yy ,拷贝当前行向下的5行 5yy&#xff0c;并粘贴&#xff08;输入p&#xff09;。 2)删除当前行 dd ,删除当前行向下的5行5dd 3)在文件中查找某个单词 [命令行下 /关键字&#xff0c;回车查找 ,输入n就是查找下一个 ] 4)设置文件的行号&…

Python 自动化 打开网站 填表登陆 例子

图样 简价&#xff1a; 简要说明这个程序的功能&#xff1a; 1. **基本功能**&#xff1a; - 自动打开网站 - 自动填写登录信息&#xff08;号、公司名称、密码&#xff09; - 显示半透明状态窗口实时提示操作进度 2. **操作流程**&#xff1a; - 打开网站后自动…

STM32-笔记10-手写延时函数(SysTick)

1、什么是SysTick Systick&#xff0c;即滴答定时器&#xff0c;是内核中的一个特殊定时器&#xff0c;用于提供系统级的定时服务。该定时器是一个24位的倒计数定时器‌。它从设定的初值&#xff08;即重载值&#xff09;开始计数&#xff0c;每经过一个系统时钟周期&#xff0…

【ETCD】【实操篇(十五)】etcd集群成员管理:如何高效地添加、删除与更新节点

etcd 是一个高可用的分布式键值存储&#xff0c;广泛应用于存储服务发现、配置管理等场景。为了确保集群的稳定性和可扩展性&#xff0c;管理成员节点的添加、删除和更新变得尤为重要。本文将指导您如何在etcd集群中处理成员管理&#xff0c;帮助您高效地维护集群节点。 目录 …

反应力场的生成物、反应路径分析方法

关注 M r . m a t e r i a l , \color{Violet} \rm Mr.material\ , Mr.material , 更 \color{red}{更} 更 多 \color{blue}{多} 多 精 \color{orange}{精} 精 彩 \color{green}{彩} 彩&#xff01; 主要专栏内容包括&#xff1a; †《LAMMPS小技巧》&#xff1a; ‾ \textbf…

GIT与github的链接(同步本地与远程仓库)

1.官网下载GIT Git - 安装 Git 2.GIT生成密钥 2.1 打开gitbash配置邮箱与用户名&#xff08;非初次使用GIT跳过这一步&#xff09; git config --global user.name "你的用户名" git config --global user.email "你的邮箱" 2.2 生成ssh密匙 1&#xff0…

从虚拟到现实:AI与AR/VR技术如何改变体验经济?

引言&#xff1a;体验经济的崛起 在当今消费环境中&#xff0c;产品与服务早已不再是市场竞争的唯一焦点&#xff0c;能够提供深刻感知和独特体验的品牌&#xff0c;往往更能赢得消费者的青睐。这种转变标志着体验经济的崛起。体验经济不仅仅是简单的买卖行为&#xff0c;而是通…

利用Python爬虫速卖通按关键字搜索AliExpress商品

在当今互联网时代&#xff0c;数据的价值不言而喻&#xff0c;尤其是在电子商务领域。对于从事市场研究、数据分析或者个人项目开发的人士来说&#xff0c;能够从电商平台如速卖通&#xff08;AliExpress&#xff09;获取商品数据是一项非常有用的技能。Python以其简洁明了的语…

qt QZipWriter详解

1、概述 QZipWriter是Qt框架中用于创建ZIP文件的类。它允许开发者将多个文件和目录压缩成一个ZIP文件&#xff0c;支持多种压缩算法&#xff0c;并且易于集成到现有的Qt项目中。通过QZipWriter&#xff0c;开发者可以轻松实现文件的压缩、管理压缩包中的文件等功能。 需要注意…

HarmonyOS NEXT 实战之元服务:静态案例效果---查看国内航班服务

背景&#xff1a; 前几篇学习了元服务&#xff0c;后面几期就让我们开发简单的元服务吧&#xff0c;里面丰富的内容大家自己加&#xff0c;本期案例 仅供参考 先上本期效果图 &#xff0c;里面图片自行替换 效果图1完整代码案例如下&#xff1a; Index代码 import { authen…