HarmonyOS NEXT 实战之元服务:静态案例效果---音乐排行榜

server/2024/12/26 2:27:35/

背景:

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

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

在这里插入图片描述

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

  • Index
import { authentication } from '@kit.AccountKit';
import { BusinessError } from '@kit.BasicServicesKit';
import { hilog } from '@kit.PerformanceAnalysisKit';
import { ListWarningView } from './ListWarningView';@Entry
@Component
struct Index {@State message: string = 'Hello World';build() {Column({space:10}) {Text($r('app.string.EntryAbility_label')).fontSize(25)ListWarningView()}.alignItems(HorizontalAlign.Start).height('100%').width('100%').margin({top:50}).padding(8)}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 parameterslet loginRequest = new authentication.HuaweiIDProvider().createLoginWithHuaweiIDRequest();// Whether to forcibly launch the HUAWEI ID login page when the user is not logged in with the HUAWEI IDloginRequest.forceLogin = false;// Execute login requestlet 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}});}
}
  • ListWarningView
import { LengthMetrics } from "@kit.ArkUI"export class TabBarModel {id: string;name: string;constructor(id: string, name: string) {this.id = id;this.name = name;}
}@Preview
@ComponentV2
export struct ListWarningView {@Local pixmap: PixelMap | undefined = undefinedprivate list: Array<TabBarModel> = []aboutToAppear(): void {// 周深《解密》this.list.push(new TabBarModel('1', '周深《解密》'));// 于文文《狼人》this.list.push(new TabBarModel('2', '于文文《狼人》'));// 周笔畅《孩子气Like A Child》this.list.push(new TabBarModel('3', '周笔畅《孩子气Like A Child》'));// 易烊千玺《从时间的两端汇合》this.list.push(new TabBarModel('4', '易烊千玺《从时间的两端汇合》'));// 半吨兄弟《见一面少一面》this.list.push(new TabBarModel('5', '半吨兄弟《见一面少一面》'));// 吕口口《放纵L》this.list.push(new TabBarModel('6', '吕口口《放纵L》'));// 单依纯《纯妹妹》this.list.push(new TabBarModel('7', '单依纯《纯妹妹》'));// 安奕安《夺冠》this.list.push(new TabBarModel('8', '安奕安《夺冠》'));// 黄霄雲《没语季节》this.list.push(new TabBarModel('9', '黄霄雲《没语季节》'));// 王大雷《一切都是最好的安排》this.list.push(new TabBarModel('10', '王大雷《一切都是最好的安排》'));}build() {NavDestination() {List(){ForEach(this.list, (item: TabBarModel, index: number) => {ListItem(){Column() {Stack({ alignContent: Alignment.TopStart }) {Image($r('app.media.list_warning_no_remove')).width(18).height(20).margin({ top: 1 })Text() {Span(' '+item.id+'  ').fontColor(Color.White).fontSize(12).fontWeight(FontWeight.Bold)ImageSpan($r('app.media.list_waring_goup')).width(20).height(20).borderRadius(4).backgroundColor('#FCEDEC').padding(3).margin({ right: 4,left:5 })Span(item.name).fontColor('#222222').fontSize(16)}.lineSpacing(LengthMetrics.vp(4)).maxLines(2).textOverflow({ overflow: TextOverflow.Ellipsis })}Row({ space: 12 }) {Text() {ImageSpan($r('app.media.list_warning_hot')).width(18).verticalAlign(ImageSpanAlignment.CENTER)ImageSpan('').width(4)Span(generateFiveDigitRandomNumber()+'').fontColor('#FF222222').fontSize(11)}Text() {ImageSpan($r('app.media.list_waring_eye')).width(18).verticalAlign(ImageSpanAlignment.CENTER)ImageSpan('').width(4)Span(generateFiveDigitRandomNumber()+'').fontColor('#FF222222').fontSize(11)}.height(18).textAlign(TextAlign.End)Text() {ImageSpan($r('app.media.list_warning_message')).width(18).verticalAlign(ImageSpanAlignment.CENTER)ImageSpan('').width(4)Span(generateFiveDigitRandomNumber()+'').fontColor('#FF222222').fontSize(11)}}.margin({ top: 10 })Row() {Text() {Span(generateRandomDate()).fontColor('#FF222222').fontSize(11)ImageSpan('').width(16)Span('腾讯新闻').fontColor('#5090F1').fontSize(11)}Text() {ImageSpan($r('app.media.list_warning_group')).height(18)ImageSpan('').width(12)ImageSpan($r('app.media.list_warning_more')).height(18)}}.width('100%').justifyContent(FlexAlign.SpaceBetween).margin({ top: 10 })Divider().height(1).backgroundColor('#F0F0F0').margin({ top: 10 })}.width('100%').alignItems(HorizontalAlign.Start).padding({left: 12,right: 12,top: 16,bottom: 16})}})}}.hideTitleBar(true)}@BuilderRandomBuilder() {Stack() {Image($r('app.media.list_warning_no_remove')).width(18).height(20).margin({ top: 1 })Text('12').fontColor(Color.White).fontSize(12)}.id('root')}
}function generateFiveDigitRandomNumber(): number {const min = 10000; // 五位数的最小值const max = 99999; // 五位数的最大值return Math.floor(Math.random() * (max - min + 1)) + min;
}function generateFiveCharacterRandomString(): string {const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';let result = '';for (let i = 0; i < 5; i++) {result += characters.charAt(Math.floor(Math.random() * characters.length));}return result;
}function generateRandomDate(): string {const minYear = 2023; // 最小年份const maxYear = 2024; // 最大年份const minMonth = 1; // 最小月份const maxMonth = 12; // 最大月份const minDay = 1; // 最小日期const maxDay = 31; // 最大日期// 生成随机年份const year = Math.floor(Math.random() * (maxYear - minYear + 1)) + minYear;// 生成随机月份const month = Math.floor(Math.random() * (maxMonth - minMonth + 1)) + minMonth;// 根据月份生成合理的日期let day = 0;if ([1, 3, 5, 7, 8, 10, 12].includes(month)) {day = Math.floor(Math.random() * (31 - minDay + 1)) + minDay;} else if ([4, 6, 9, 11].includes(month)) {day = Math.floor(Math.random() * (30 - minDay + 1)) + minDay;} else if (month === 2) {// 处理闰年if ((year % 4 === 0 && year % 100 !== 0) || year % 400 === 0) {day = Math.floor(Math.random() * (29 - minDay + 1)) + minDay;} else {day = Math.floor(Math.random() * (28 - minDay + 1)) + minDay;}}// 返回格式化的日期字符串return `${year}-${String(month).padStart(2, '0')}-${String(day).padStart(2, '0')}`;
}

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

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

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

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

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

http://www.ppmy.cn/server/153202.html

相关文章

如何实现单例模式?

概念 单例模式&#xff08;Singleton Pattern&#xff09;是一种设计模式&#xff0c;确保一个类只有一个实例&#xff0c;并提供一个全局访问点。它常用于需要控制资源访问的场景&#xff0c;如数据库连接、日志记录或者配置管理等。 方式 懒汉式单例 懒汉式单例是在第一次…

产品更新 | 一网联千策:华望M-Cowork平台上的SysML模型协同管理

华望产品更新速递 功能介绍 | 协同平台M-Cowork的强大功能 ◆在线SysML建模与预览 ◆版本控制和基线管理 ◆可追溯的审签流程 ◆全面的系统管理 产品亮点 | 进一步了解协同平台M-Cowork ◆M-Cowork的管理功能 ◆M-Cowork的预览功能 ◆M-Cowork的审签流程 前言 在系统工…

《XML》教案 第2章 使第4章 呈现XML文档

《XML》教案 第2章 使第4章 呈现XML文档 主讲人&#xff1a; 回顾上一章: [10分钟] 2 课程知识点讲解&#xff1a; 2 通过级联样式表转换XML文档&#xff1a;[15分钟] 3 通过可扩展样式表语言转换XML文档 &#xff1a;[5分钟] 4 嵌套 for 循环 &#xff1a;[20分钟] 5 本章总结…

数据结构漫游记:静态链表的实现(CPP)

嘿&#xff0c;各位技术潮人&#xff01;好久不见甚是想念。生活就像一场奇妙冒险&#xff0c;而编程就是那把超酷的万能钥匙。此刻&#xff0c;阳光洒在键盘上&#xff0c;灵感在指尖跳跃&#xff0c;让我们抛开一切束缚&#xff0c;给平淡日子加点料&#xff0c;注入满满的pa…

postgreSql对分钟级的降雨数据进行插值为整小时

postgreSql对分钟级的降雨数据进行插值为整小时 SQL语句实现 SQL语句实现 --核查某个小流域的降雨量小时插值是否正确SELECT tm, sum(drp) as sum, round(sum(drp), 2) as drp2 from(SELECT a.stcd, (TO_TIMESTAMP(time_period, YYYY-MM-DD HH24:MI:SS) INTERVAL 1 HOUR) as t…

解决“SVN无法上传或下载*.so、*.a等二进制文件“问题

今天&#xff0c;在使用Subversion提交代码到服务器时&#xff0c;发现无法提交*.a、*.so等二进制文件&#xff0c;右击这些文件&#xff0c;发现其属性为ignores。     问题原因&#xff1a;SVN的配置文件里&#xff0c;屏蔽了*.a、*.so文件的上传与下载&#xff0c;并把这些…

04、Vue与Ajax

4.1 发送AJAX异步请求的方式 发送AJAX异步请求的常见方式包括&#xff1a; 4.1.1. 原生方式 使用浏览器内置的JS对象XMLHttpRequest const xhr new XMLHttpRequest() xhr.open() xhr.send() xhr.onreadystatechange function(){} 4.1.2. 原生方式 使用浏览器内置的JS函…

mac 上安装Selenium + 谷歌浏览器驱动 116.0.5845.x

1、本地安装Selenium pip install selenium pip show selenium 2、安装谷歌驱动 &#xff08;1&#xff09;驱动地址 https://chromedriver.storage.googleapis.com/index.html &#xff08;2&#xff09;查看谷歌版本 &#xff08;3&#xff09;选择驱动并下载 上述没有我…