HarmonyOS NEXT 实战之元服务:静态案例效果---妙语集语

背景:

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

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

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

复制代码
import { authentication } from '@kit.AccountKit';
import { BusinessError } from '@kit.BasicServicesKit';
import { hilog } from '@kit.PerformanceAnalysisKit';

@Entry
@ComponentV2
struct Index {
  readonly PAGE_FULL: string = "100%";
  readonly PRE_96: string = "96%";
  readonly SIZE_40: number = 40;
  readonly SIZE_30: number = 30;
  readonly SIZE_20: number = 20;
  readonly SIZE_16: number = 16;
  readonly SIZE_8: number = 8;
  readonly SIZE_4: number = 4;
  @Local origin: string = '山园小梅・其一'
  @Local author: string = '林逋'
  @Local content: string = '疏影横斜水清浅,暗香浮动月黄昏。'
  @Local category: string = '古诗文 - 自然 - 梅花'
  @Local status: number = 0

  //   {
  //   "content": "疏影横斜水清浅,暗香浮动月黄昏。",
  //   "author": "林逋",
  //   "origin": "山园小梅・其一",
  //   "category": "古诗文 - 自然 - 梅花"
  // },
  // {
  //   "content": "秋风生渭水,落叶满长安。",
  // "author": "贾岛",
  // "origin": "忆江上吴处士",
  // "category": "古诗文 - 四季 - 秋天"
  // },
  // {
  //   "content": "等闲识得东风面,万紫千红总是春。",
  // "author": "朱熹",
  // "origin": "春日",
  // "category": "古诗文 - 四季 - 春天"
  // }
  build() {
    Column() {
      Row({ space: this.SIZE_8 }) {
        Image($r('app.media.miaoyujiyu'))
          .width(this.SIZE_20)
          .height(this.SIZE_20)

        Text($r('app.string.EntryAbility_label'))
          .fontSize(14)
          .fontColor(Color.White)
      }
      .width(this.PAGE_FULL)
      .borderRadius({ topLeft: 12, topRight: 12 })
      .height(this.SIZE_40)
      .linearGradient({
        angle: 45,
        colors: [['#51A3AF', 0.1], ['#468C9E', 1.0]]
      })
      .padding({
        left: this.SIZE_16,
        right: this.SIZE_16
      })

      Column({ space: this.SIZE_8 }) {
        Text(this.origin)
          .fontSize(18)
          .fontWeight(FontWeight.Bolder)
          .fontColor('#3F3F61')
        Text(this.author)
          .fontSize(14)
          .fontWeight(FontWeight.Medium)
          .fontColor('#9D9D9D')

        Text(this.content)
          .fontSize(16)
          .fontColor('#454561')

        Text('            ' + this.category)
          .fontSize(16)
          .fontColor('#999999').margin({ left: 20 })


        Row({ space: 8 }) {
          Text('刷新')
          Image($r('app.media.uaxing'))
            .width(this.SIZE_20)
            .height(this.SIZE_20)
            .fillColor(Color.White)
        }
        .borderWidth(1)
        .margin({ top: 30 })
        .borderRadius(12)
        .borderColor('#51A3AF')
        .width('30%')
        .justifyContent(FlexAlign.Center)
        .padding(5)
        .onClick(() => {
          //   {
          //   "content": "疏影横斜水清浅,暗香浮动月黄昏。",
          //   "author": "林逋",
          //   "origin": "山园小梅・其一",
          //   "category": "古诗文 - 自然 - 梅花"
          // },
          // {
          //   "content": "秋风生渭水,落叶满长安。",
          // "author": "贾岛",
          // "origin": "忆江上吴处士",
          // "category": "古诗文 - 四季 - 秋天"
          // },
          // {
          //   "content": "等闲识得东风面,万紫千红总是春。",
          // "author": "朱熹",
          // "origin": "春日",
          // "category": "古诗文 - 四季 - 春天"
          // }
          // {
          //   "content": "明月松间照,清泉石上流。",
          // "author": "王维",
          // "origin": "山居秋暝",
          // "category": "古诗文 - 自然 - 山水"
          // }

          console.log(`xxxthis.status : ---` + this.status)

            this.status = this.status + 1

          if (this.status == 0) {

            this.content = '疏影横斜水清浅,暗香浮动月黄昏。'
            this.author = '林逋'
            this.origin = '山园小梅・其一'
            this.category = '古诗文 - 自然 - 梅花'
          } else if (this.status == 1) {
            this.content = '秋风生渭水,落叶满长安。'
            this.author = '贾岛'
            this.origin = '忆江上吴处士'
            this.category = '古诗文 - 四季 - 秋天'
          } else if (this.status == 2) {
            this.content = '等闲识得东风面,万紫千红总是春。'
            this.author = '朱熹'
            this.origin = '春日'
            this.category = '古诗文 - 四季 - 春天'
          } else if (this.status == 3) {
            this.content = '明月松间照,清泉石上流。'
            this.author = '王维'
            this.origin = '山居秋暝'
            this.category = '古诗文 - 自然 - 山水'
            this.status = -1
          }


        })

      }
      .width(this.PAGE_FULL)
      .margin({ top: 10 })
      .padding({ top: this.SIZE_4, bottom: this.SIZE_8 })
    }
    .width('86%')
    .height('40%')
    .borderWidth(1)
    .borderRadius(12)
    .margin({ left: 23, top: 70, right: 13 })
    .borderColor('#51A3AF')

    // .padding(16)

  }

  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

      }
    });
  }
}
相关推荐
goto_w3 小时前
uniapp上使用webview与浏览器交互,支持三端(android、iOS、harmonyos next)
android·vue.js·ios·uni-app·harmonyos
别说我什么都不会18 小时前
ohos.net.http请求HttpResponse header中set-ccokie值被转成array类型
网络协议·harmonyos
码是生活18 小时前
鸿蒙开发排坑:解决 resourceManager.getRawFileContent() 获取文件内容为空问题
前端·harmonyos
鸿蒙场景化示例代码技术工程师19 小时前
基于Canvas实现选座功能鸿蒙示例代码
华为·harmonyos
小脑斧爱吃鱼鱼20 小时前
鸿蒙项目笔记(1)
笔记·学习·harmonyos
鸿蒙布道师20 小时前
鸿蒙NEXT开发对象工具类(TS)
android·ios·华为·harmonyos·arkts·鸿蒙系统·huawei
zhang10620920 小时前
HarmonyOS 基础组件和基础布局的介绍
harmonyos·基础组件·基础布局
马剑威(威哥爱编程)21 小时前
在HarmonyOS NEXT 开发中,如何指定一个号码,拉起系统拨号页面
华为·harmonyos·arkts
GeniuswongAir1 天前
Flutter极速接入IM聊天功能并支持鸿蒙
flutter·华为·harmonyos
90后的晨仔1 天前
鸿蒙ArkUI框架中的状态管理
harmonyos