当前位置: 首页 > article >正文

HarmonyOS NEXT 实战之元服务:静态案例效果---本地生活服务

背景:

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

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

在这里插入图片描述

效果图1完整代码案例如下:

import { authentication } from '@kit.AccountKit';
import { BusinessError } from '@kit.BasicServicesKit';
import { hilog } from '@kit.PerformanceAnalysisKit';
import { promptAction } from '@kit.ArkUI';

@Entry
@ComponentV2
struct Index {
  @Local isOn: boolean = true;

  build() {
    Column({ space: 13 }) {
      Text($r('app.string.EntryAbility_label'))
        .fontSize(24)
        .fontColor(Color.White)
        .fontWeight(FontWeight.Bold)
        .margin({ top: 10, left: 16 })

      Column() {

        Row() {
          this.fuYong($r('app.media.img'), '手机充值')
          this.fuYong($r('app.media.img_1'), '生活缴费')
          this.fuYong($r('app.media.img_2'), '附近加油')
          this.fuYong($r('app.media.img_3'), '挂号体检')
        }.width('95%').justifyContent(FlexAlign.SpaceAround)

        Row() {
          this.fuYong($r('app.media.img_4'), '同城服务')
          this.fuYong($r('app.media.img_5'), '买房租房')
        }.width('95%').justifyContent(FlexAlign.SpaceAround)
      }
      .width('95%')
      .padding(16)
      .borderRadius(12)
      .backgroundColor('#DCE1DD')

      Row() {
        Column({ space: 5 }) {
          Text('接收服务通知').fontColor(Color.Black).fontSize(24).fontWeight(FontWeight.Bold)
          Text('根据您用此服务的规律,提供智能化更新').fontColor('#B5B5B5').fontSize(12)
        }.alignItems(HorizontalAlign.Start)

        Toggle({ type: ToggleType.Switch, isOn: this.isOn }).onChange(value => {
          this.isOn = value
          if (this.isOn) {
            promptAction.showToast({ message: '已开启服务通知' })
          } else {
            promptAction.showToast({ message: '已关闭服务通知' })
          }
        })
      }
      .width('96%')
      .justifyContent(FlexAlign.SpaceBetween)
      .backgroundColor('#DCE1DD')
      .borderRadius(10)
      .padding(8)

    }
    .height('100%')
    .width('100%')
    .backgroundColor('#768666')
    .margin({ top: 60 })
  }

  @Builder
  fuYong(img: ResourceStr, text: string) {
    Column({ space: 3 }) {
      Image(img).width(40).height(40)
      Text(text)
    }.backgroundColor('#DCE1DD').padding(5)
    .onClick(() => {
      promptAction.showToast({ message: '当前城市暂不支持此服务,请耐心等待后续开通...' })
    })
  }

  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

      }
    });
  }
}

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

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

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

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

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

http://www.kler.cn/a/458825.html

相关文章:

  • 【Vue3项目实战系列一】—— .eslint.config.js配置文件详细说明,本文除了讲解项目配置项内容,还探讨了更多高级设置并给出参考示例,阅读本文你可以更好地理解和使用 eslint
  • 快速掌握Elasticsearch检索之二:滚动查询(scrool)获取全量数据(golang)
  • 【网络安全实验室】SQL注入实战详情
  • Docker部署ubuntu测试环境
  • 二、SQL语言,《数据库系统概念》,原书第7版
  • 汽车损坏识别检测数据集,使用yolo,pasical voc xml,coco json格式标注,6696张图片,可识别11种损坏类型,识别率89.7%
  • SkyWalking Agent 配置 Spring Cloud Gateway 插件解决日志错误
  • Momentum Contrast for Unsupervised Visual Representation Learning论文笔记
  • Django多字段认证的实现
  • python脚本加载ui页面:PySide6设计的页面
  • SQL 实战:窗口函数进阶 – 实现复杂滑动窗口与动态累计计算
  • 大数据与机器学习(它们有何关系?)
  • Mac电脑python多版本环境安装与切换
  • Selenium之Web元素定位
  • Android笔试面试题AI答之Android基础(7)
  • hive-sql 连续登录五天的用户
  • 【GeekBand】C++设计模式笔记18_State_状态模式
  • 【2024年-6月-21日-开源社区openEuler实践记录】探索 intel-kernel:英特尔架构内核优化之路
  • [TOTP]android kotlin实现 totp身份验证器 类似Google身份验证器
  • 环,域,体,整区,理想,极大理想,
  • 配置hive支持中文注释
  • Lombok是银弹?还是陷阱?
  • golang标准库archive/tar实现打包压缩及解压
  • 《Java核心技术 卷II》流的创建
  • Vue el-data-picker选中开始时间,结束时间自动加半小时
  • 滑动窗口、流量控制和拥塞控制