HarmonyOS NEXT 实战之元服务:静态案例效果--- 手机一键加速、手机垃圾清理

embedded/2024/12/26 12:59:47/

背景:

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

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

在这里插入图片描述
在这里插入图片描述

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

import { authentication } from '@kit.AccountKit';
import { BusinessError } from '@kit.BasicServicesKit';
import { hilog } from '@kit.PerformanceAnalysisKit';@Entry
@Component
struct Index {@State message: string = 'Hello World';build() {Column() {Text($r('app.string.EntryAbility_label')).fontWeight(FontWeight.Bold).fontSize(29).fontColor("#222222").margin({ top: 20, bottom: 20 })Row() {Stack() {Progress({value: 6800,total: 10000,type: ProgressType.Ring}).width(84).color("#1B80FA").style({ strokeWidth: 10 }).backgroundColor('#EDF3FD')Text('68%').fontSize(14).fontColor("#222222").fontWeight(FontWeight.Bold)}.margin({ left: 16 })Column({ space: 6 }) {Text('请放心使用').fontColor('#383838').fontSize(25)Text('本周自动清理 1.13 GB').fontColor('#9E9E9E').fontSize(15)Text('已使用 52.91 GB/256 GB >').fontColor('#9E9E9E').fontSize(15)}.alignItems(HorizontalAlign.Start).margin({ left: 8 })}.width('100%').height(150).backgroundColor(Color.White).borderRadius(10)Text('推荐压缩').fontSize(24).fontColor("#222222").margin({ top: 20, bottom: 20 })Row() {Text().backgroundColor('#EB6F20').width(40).height(40).borderRadius(20)Column({ space: 6 }) {Text('113 组文件可压缩').fontColor('#383838').fontSize(20)Text('491MB').fontColor('#A5A5A5').fontSize(15)}.alignItems(HorizontalAlign.Start).margin({ left: 8 }).layoutWeight(1)Button("无损压缩").height(40).fontSize(16).margin({ left: 4 })}.width('100%').height(100).backgroundColor(Color.White).borderRadius(10).padding(16)Row() {Text().backgroundColor('#F8A52B').width(40).height(40).borderRadius(20)Column({ space: 6 }) {Text('垃圾文件').fontColor('#383838').fontSize(20)Text('2.36 GB').fontColor('#A5A5A5').fontSize(15)}.alignItems(HorizontalAlign.Start).margin({ left: 8 }).layoutWeight(1)Button("立即清理").height(40).fontSize(16).margin({ left: 4 }).backgroundColor('#F8A52B')}.width('100%').height(80).backgroundColor(Color.White).borderRadius(10).padding(16).margin({ top: 16 })}.height('100%').width('100%').padding(16).backgroundColor('#F2F3F5').margin({ top: 60 }).alignItems(HorizontalAlign.Start)}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}});}
}

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

import { authentication } from '@kit.AccountKit';
import { BusinessError } from '@kit.BasicServicesKit';
import { hilog } from '@kit.PerformanceAnalysisKit';@Entry
@ComponentV2
struct Index {@Local c1: number = 535;@Local c2: number = 348;build() {Column({ space: 8 }) {Text($r('app.string.EntryAbility_label')).fontWeight(FontWeight.Bold).fontSize(29).fontColor("#222222").margin({ top: 20, bottom: 20 })Row() {Checkbox().select(true).onChange(value => {console.log('xxxxxxxxxxxx' + value)})Column({ space: 6 }) {Text('内存垃圾').fontColor('#383838').fontSize(20)Text('已选2项').fontColor('#6A6A6A').fontSize(15)}.alignItems(HorizontalAlign.Start).margin({ left: 8 }).layoutWeight(1)Text('2 项 >').fontColor('#6A6A6A').fontSize(20)}.width('100%').height(100).backgroundColor(Color.White).borderRadius(10).padding(16)// 缓存垃圾// 已选 535 KB// 系统垃圾//// 2 项// 535 KB2// 348 KBRow() {Checkbox().select(true).onChange(value => {this.c1 = value ? 535 : 0})Column({ space: 6 }) {Text('缓存垃圾').fontColor('#383838').fontSize(20)Text('已选 535 KB').fontColor('#6A6A6A').fontSize(15)}.alignItems(HorizontalAlign.Start).margin({ left: 8 }).layoutWeight(1)Text('535 KB').fontColor('#6A6A6A').fontSize(20)}.width('100%').height(100).backgroundColor(Color.White).borderRadius(10).padding(16)Row() {Checkbox().select(true).onChange(value => {this.c2 = value ? 348 : 0})Column({ space: 6 }) {Text('系统垃圾').fontColor('#383838').fontSize(20)Text('已选 348 KB').fontColor('#6A6A6A').fontSize(15)}.alignItems(HorizontalAlign.Start).margin({ left: 8 }).layoutWeight(1)Text('348 KB >').fontColor('#6A6A6A').fontSize(20)}.width('100%').height(100).backgroundColor(Color.White).borderRadius(10).padding(16)Button(`删除(已选 ${this.c1 + this.c2} KB)`).width('70%').margin({ top: 40, left: 50 }).backgroundColor('#E7E8EA').fontColor('#E65A5B')}.height('100%').width('100%').alignItems(HorizontalAlign.Start).padding(16).backgroundColor('#F2F3F5').margin({ top: 50 })}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}});}
}

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

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/embedded/148897.html

相关文章

java高频面试之SE-05

面试官:java中为什么有多态? 面试官你好!Java 中有多态主要是为了实现灵活性和可扩展性。通过多态,可以用统一的接口处理不同的对象,从而提高代码的可维护性和可复用性。以下是多态的几个关键原因: 1. 代…

不在广东想把自己的IP变成广东怎么办

点击这篇文章的读者中,很多可能需要将自己的本机IP地址修改为广东省的IP地址。那么如何操作才能切换到广东省呢?如果您人不在广东省内,但是在国内的其他地区,这时可使用支持切换IP地址的软件进行辅助。 随着代理IP技术在网络中得到…

如何根据一系列提交文件,匹配对应的git提交记录?用ai

显示提取提交文件记录的git历史(用的豆包写一下) 显示每次提交涉及的文件名及提交注释等基本信息 可以使用以下命令格式: git log --name-only --prettyformat:“%an - %s” myFolder/ –name-only选项的作用是在显示提交信息时&#xff0…

【Leetcode】855. 考场就座

文章目录 题目思路代码复杂度分析时间复杂度空间复杂度 结果总结 题目 题目链接🔗 在考场里,有 n n n 个座位排成一行,编号为 0 0 0 到 n − 1 n - 1 n−1。 当学生进入考场后,他必须坐在离最近的人最远的座位上。如果有多个…

C语言-基因序列转换独热码(one-hot code)

1.题目要求 (语言: C)在生物信息学家处理基因序列时,经常需要将基因序列转化为独热码,在英文文献中称做 one-hot code, 直观来说就是有多少个状态就有多少比特,而且只有一个比特为1,其他全为0的一种码制。 如基因序列有四种状态&…

云手机服务器如何做到群控多台手机的?

亚矩阵云手机服务器解决方案是基于ARM集群芯片和虚拟化技术的一站式解决方案,具有高性能,高集成度的特点;支持一键操控、应用多开、真机检测等功能;广泛适用于舆情监测、海外推广、APP检测、政务云手机等场景。 亚矩阵云手机服务器…

Java学习笔记(16)--面向对象编程

学习资料来自接口 - Java教程 - 廖雪峰的官方网站 面向对象基础 目录 面向对象基础 接口 定义 术语 接口继承 继承关系 default方法 default方法和抽象类的普通方法的区别: 练习 小结 接口 定义 如果一个抽象类没有字段,所有方法都是抽象方…

华三M-LAG场景下,部分MAC内的流量泛洪导致端口流量打满

互联网各领域资料分享专区(不定期更新): Sheet 问题描述 华三M-LAG场景下,部分MAC内的流量泛洪导致端口流量打满 解决方案 在交换机设备上创建1个无用的聚合口,该聚合口加入到mlag组,并将异常泛洪的MAC加入到该接口即可解决。&…