HarmonyOS NEXT 实战之元服务:静态案例效果---歌单保举

打印 上一主题 下一主题

主题 825|帖子 825|积分 2475

配景:

前几篇学习了元服务,背面几期就让我们开发简朴的元服务吧,里面丰富的内容大家自己加,本期案例 仅供参考
先上本期效果图 ,里面图片自行替换


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



  • Index
  1. import { authentication } from '@kit.AccountKit';
  2. import { BusinessError } from '@kit.BasicServicesKit';
  3. import { hilog } from '@kit.PerformanceAnalysisKit';
  4. import { TypeCommonItem } from './TypeCommonItem';
  5. @Entry
  6. @ComponentV2
  7. struct Index {
  8.   build() {
  9.     Column() {
  10.       Text($r('app.string.EntryAbility_label')).fontSize(20)
  11.       List() {
  12.         ForEach(['青春跃动:校园时光的旋律', '心灵治愈:温暖旋律抚心伤', '动感节奏:舞池狂欢不停歇',
  13.           '经典怀旧:岁月留声机里的故事'], (item: string) => {
  14.           ListItem() {
  15.             TypeCommonItem({ title: item })
  16.           }
  17.         })
  18.       }
  19.     }
  20.     .alignItems(HorizontalAlign.Start)
  21.     .height('100%')
  22.     .width('100%')
  23.     .margin({ top: 40 })
  24.   }
  25.   aboutToAppear() {
  26.     hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onCreate');
  27.     this.loginWithHuaweiID();
  28.   }
  29.   /**
  30.    * Sample code for using HUAWEI ID to log in to atomic service.
  31.    * According to the Atomic Service Review Guide, when a atomic service has an account system,
  32.    * the option to log in with a HUAWEI ID must be provided.
  33.    * The following presets the atomic service to use the HUAWEI ID silent login function.
  34.    * To enable the atomic service to log in successfully using the HUAWEI ID, please refer
  35.    * to the HarmonyOS HUAWEI ID Access Guide to configure the client ID and fingerprint certificate.
  36.    */
  37.   private loginWithHuaweiID() {
  38.     // Create a login request and set parameters
  39.     let loginRequest = new authentication.HuaweiIDProvider().createLoginWithHuaweiIDRequest();
  40.     // Whether to forcibly launch the HUAWEI ID login page when the user is not logged in with the HUAWEI ID
  41.     loginRequest.forceLogin = false;
  42.     // Execute login request
  43.     let controller = new authentication.AuthenticationController();
  44.     controller.executeRequest(loginRequest).then((data) => {
  45.       let loginWithHuaweiIDResponse = data as authentication.LoginWithHuaweiIDResponse;
  46.       let authCode = loginWithHuaweiIDResponse.data?.authorizationCode;
  47.       // Send authCode to the backend in exchange for unionID, session
  48.     }).catch((error: BusinessError) => {
  49.       hilog.error(0x0000, 'testTag', 'error: %{public}s', JSON.stringify(error));
  50.       if (error.code == authentication.AuthenticationErrorCode.ACCOUNT_NOT_LOGGED_IN) {
  51.         // HUAWEI ID is not logged in, it is recommended to jump to the login guide page
  52.       }
  53.     });
  54.   }
  55. }
复制代码


  • TypeCommonItem
  1. import { ImageTextComp } from "./ImageTextComp"
  2. @Extend(Image)
  3. function imageExtend(width: Length, height: Length) {
  4.   .width(width)
  5.   .height(height)
  6. }
  7. @Preview
  8. @ComponentV2
  9. export struct TypeCommonItem {
  10.   @Param title: string = ''
  11.   build() {
  12.     Column() {
  13.       Row() {
  14.         // CheckBoxSquare({
  15.         //   select: true, onChange: (value) => {
  16.         //     ToastUtil.showToast(`${value}`)
  17.         //   }
  18.         // })
  19.         Column() {
  20.           Row() {
  21.             ImageTextComp({ title: this.title }).layoutWeight(1)
  22.             Stack() {
  23.               Image('')
  24.                 .imageExtend(96, 64)
  25.                 .borderRadius(4)
  26.                 .backgroundColor("#DADCDF")
  27.                 .margin({ right: 18, top: 4 })
  28.               Image($r('app.media.startIcon'))
  29.                 .imageExtend(108, 72)
  30.                 .borderRadius(4)
  31.                 .backgroundColor('#ccc')
  32.                 .margin({ left: 12 })
  33.               Image($r('app.media.startIcon'))
  34.                 .imageExtend(21, 19)
  35.               Image($r('app.media.startIcon'))
  36.                 .imageExtend(16, 16)
  37.                 .backgroundColor("#5090F1")
  38.                 .borderRadius(4)
  39.                 .padding(1)
  40.                 .position({ x: 100, y: 54 })
  41.             }.height(72).alignContent(Alignment.TopEnd)
  42.           }.width('100%').alignItems(VerticalAlign.Top)
  43.           Text(this.getjieshao(this.title))
  44.             .width('100%')
  45.             .fontSize(13)
  46.             .fontColor('#505050')
  47.             .margin({ top: 8 })
  48.             .maxLines(2)
  49.             .textOverflow({ overflow: TextOverflow.Ellipsis })
  50.           Row() {
  51.             Text('12:35').fontSize(11).fontColor('#505050')
  52.             Text('华为音乐').fontSize(11).fontColor("#5090F1").margin({ left: 12, right: 12 })
  53.             Image($r('app.media.startIcon')).width(16).borderRadius(8)
  54.             Text('微博大V').fontSize(11).fontColor('#505050').margin({ left: 4, right: 4 })
  55.             Image($r('app.media.startIcon')).imageExtend(44, 17)
  56.             Blank()
  57.             Image($r('app.media.ic_item_more')).width(16)
  58.           }.width('100%').height(40)
  59.         }.width('100%').layoutWeight(1)
  60.       }.alignItems(VerticalAlign.Top).margin({ top: 12 })
  61.       Divider()
  62.     }
  63.     .width('100%')
  64.     .padding({ left: 12, right: 12 })
  65.     // .height('100%')
  66.     .backgroundColor(Color.White)
  67.   }
  68.   private getjieshao(title: string) {
  69.     if (title == "青春跃动:校园时光的旋律") {
  70.       return '这个歌单宛如一部青春纪念册,收录了诸多陪伴我们度过校园岁月的歌曲。从青涩懵懂的初恋情怀,到与好友在操场追逐嬉戏的欢乐时刻,每一首歌都承载着那些无忧无虑的日子。轻快的旋律如阳光洒在校园小径,带您重温课间十分钟的喧闹、运动会上的激情呐喊,以及教室里的朗朗书声,让您在音符中找回那份纯真与活力。'
  71.     }
  72.     if (title == "心灵治愈:温暖旋律抚心伤") {
  73.       return '介绍:在生活的喧嚣与疲惫中,我们都需要一个角落来安放内心的疲惫。此歌单精选了一系列具有治愈力量的歌曲,如同冬日里的暖阳,轻柔地洒在心田。这些歌曲的歌词富有深意,旋律舒缓动人,能在您失落、迷茫或焦虑时,给予慰藉与陪伴。它们像是无声的朋友,用音乐的语言为您排忧解难,助您重拾勇气与希望,再次拥抱生活的美好。'
  74.     }
  75.     if (title == "动感节奏:舞池狂欢不停歇") {
  76.       return '介绍:准备好释放您的激情了吗?这个歌单是为热爱舞蹈与动感节奏的您量身打造。汇聚了流行、电子、嘻哈等多种风格的嗨曲,强烈的鼓点和富有感染力的旋律,仿佛是舞池的心跳。无论是在夜店尽情摇摆,还是在家中独自释放压力,这些歌曲都能瞬间点燃您的热情,让您的身体不由自主地跟随节奏律动,沉浸在无尽的欢乐与活力之中,忘却一切烦恼与束缚。'
  77.     }
  78.     if (title == "经典怀旧:岁月留声机里的故事") {
  79.       return '介绍:时光流转,经典永恒。本歌单带您穿越回往昔岁月,重温那些经受过时间考验的经典之作。从上个世纪的摇滚传奇到深情款款的华语老歌,每一首都承载着一代人的回忆与情感。这些歌曲见证了音乐发展的历程,它们的旋律和歌词中蕴含着深深的时代烙印,让人在聆听中不禁感叹岁月的变迁,同时也为那些不朽的音乐艺术所折服,是一场不容错过的怀旧音乐之旅。'
  80.     }
  81.     return ''
  82.   }
  83. }
复制代码


  • ImageTextComp
  1. /** 公共图片+文字 */
  2. @Preview
  3. @ComponentV2
  4. export struct ImageTextComp {
  5.   @Param title: string = ''
  6.   build() {
  7.     Row() {
  8.       Text() {
  9.         ImgSpan()
  10.         Span(this.title)
  11.           .fontColor('#222222').fontSize(16)
  12.       }.width('100%')
  13.       .maxLines(2)
  14.       .textOverflow({ overflow: TextOverflow.Ellipsis })
  15.     }
  16.   }
  17. }
  18. /** 图片+文字 */
  19. @Builder
  20. export function ImageTextShortVideo() {
  21.   Text() {
  22.     ImgSpan()
  23.     Span('xxxxxxxxxxxxx')
  24.       .fontColor('#222222').fontSize(14).fontWeight(FontWeight.Bold)
  25.   }
  26.   .width('100%')
  27.   .maxLines(2)
  28.   .lineHeight(20)
  29.   .textOverflow({ overflow: TextOverflow.Ellipsis })
  30.   .padding({ left: 8, top: 8, right: 8 })
  31.   .alignRules({ top: { anchor: 'bg_img_single_top', align: VerticalAlign.Bottom } })
  32. }
  33. @Builder
  34. function ImgSpan() {
  35.   ImageSpan($r('app.media.startIcon')).Image()
  36.   ImageSpan($r('app.media.startIcon')).Image()
  37. }
  38. @Extend(ImageSpan)
  39. function Image(event: () => void = () => {
  40. }) {
  41.   .height(16)
  42.   .verticalAlign(ImageSpanAlignment.CENTER)
  43.   .onClick(event)
  44.   .padding({ right: 4 })
  45. }
复制代码
最近文章>>>>>>>>>>>

HarmonyOS NEXT实战:元服务与应用 APP 发布应用市场的具体步骤与流程
若本文对您稍有帮助,诚望您不吝点赞,多谢。
有兴趣的同学可以点击查看源码



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

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

干翻全岛蛙蛙

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表