OpenHarmony实战开发—— 组件 LoadingView 学习指南~

536 篇文章 10 订阅
425 篇文章 3 订阅

1. LoadingView 组件功能介绍

1.1. 功能介绍:

LoadingView 组件是一个可以显示加载动画的三方组件,目前支持 4 种风格的显示。

1.2. 模拟器上运行效果:

2. LoadingView 使用方法

2.1. 新建工程,增加组件 Har 包依赖

在应用模块中添加 HAR,只需要将 precentpositionlayout.har 和 loadingview.har 复制到entry\libs 目录下即可(由于 build.gradle 中已经依赖的 libs 目录下的*.har,因此不需要在做
修改)。

2.2. 修改主页面的布局文件

修改主页面的布局文件 ability_main.xml,将跟组件容器修改为com.isoftstone.precentpositionlayout.PrecentPositionLayout,然后在增加 4 个com.isoftstone.loadingview.LoadingView 组件,分别位于屏幕的左上,左下,右上,右下的位置,长度和宽度都占屏幕的 50%。修改后代码如下:

<?xml version="1.0" encoding="utf-8"?>
<com.isoftstone.precentpositionlayout.PrecentPositionLayout
xmlns:ohos="http://schemas.huawei.com/res/ohos"
ohos:height="match_parent"
ohos:width="match_parent"
ohos:orientation="vertical"
ohos:id = "$+id:layout_main">
<com.isoftstone.loadingview.LoadingView
ohos:id="$+id:text_helloworld"
ohos:height="500"
ohos:width="500"
ohos:left_margin="0"
ohos:top_margin="0"
/>
<com.isoftstone.loadingview.LoadingView
ohos:id="$+id:text_helloworld2"
ohos:height="500"
ohos:width="500"
ohos:left_margin="500"
ohos:top_margin="0"
/>

<com.isoftstone.loadingview.LoadingView
ohos:id="$+id:text_helloworld3"
ohos:height="500"
ohos:width="500"
ohos:left_margin="0"
ohos:top_margin="500"
/>
<com.isoftstone.loadingview.LoadingView
ohos:id="$+id:text_helloworld4"
ohos:height="500"
ohos:width="500"
ohos:left_margin="500"
ohos:top_margin="500"
/>
</com.isoftstone.precentpositionlayout.PrecentPositionLayout>

2.3. 修改 MainAbilitySlince 的 UI 加载代码

在 MainAbilitySlince 类的 onStart 函数中,增加如下代码

@Override
public void onStart(Intent intent) {
super.onStart(intent);
super.setUIContent(ResourceTable.Layout_ability_main);
PrecentPositionLayout precentPositionLayout =
(PrecentPositionLayout)findComponentById(ResourceTable.Id_layout_main);
precentPositionLayout.AutoSize();
LoadingView loadingView1 =
(LoadingView)findComponentById(ResourceTable.Id_text_helloworld);
loadingView1.SetType(LoadingView.LoadingViewType.WATER);
loadingView1.addDrawTask(loadingView1);
LoadingView loadingView2 =
(LoadingView)findComponentById(ResourceTable.Id_text_helloworld2);
loadingView2.SetType(LoadingView.LoadingViewType.BALLOON);
loadingView2.addDrawTask(loadingView2);
LoadingView loadingView3 =
(LoadingView)findComponentById(ResourceTable.Id_text_helloworld3);
loadingView3.SetType(LoadingView.LoadingViewType.FISH);
loadingView3.addDrawTask(loadingView3);
LoadingView loadingView4 =
(LoadingView)findComponentById(ResourceTable.Id_text_helloworld4);
loadingView4.SetType(LoadingView.LoadingViewType.CIRCLE);
loadingView4.addDrawTask(loadingView4);
}

3. LoadingView 开发实现

3.1. 新建一个 Module

新建一个 Module,类型选择 HarmonyOS Library,模块名为 loadingview,如图

3.2. 新建一个 LoadingView 类

新建一个 LoadingView 类,继承自 Component 类,实现 Component.DrawTast 接口,并重写
onDraw 方法,代码如下:

// 绘制类
private LoadingRander loadingRander;
@Override
public void onDraw(Component component, Canvas canvas) {
// 获取组件的大小,进行绘制
DimensFloat pt = getComponentSize();
Rect rect = new Rect(0,0,pt.getSizeXToInt(),pt.getSizeYToInt());
loadingRander.draw(canvas, rect);
}

为了实现动画,需要定义一个 AnimatorValue,并设置动画侦听回调函数,代码如下:

// 动画
private AnimatorValue animatorValue;
// 动画侦听函数
private final AnimatorValue.ValueUpdateListener mAnimatorUpdateListener
= new AnimatorValue.ValueUpdateListener() {
@Override
public void onUpdate(AnimatorValue animatorValue, float v) {
if (loadingRander != null) {
loadingRander.setProgess(v);
}
invalidate();
}
};
private void init() {
// 启动动画
animatorValue = new AnimatorValue();
animatorValue.setCurveType(Animator.CurveType.LINEAR);
animatorValue.setDelay(100);
animatorValue.setLoopedCount(Animator.INFINITE);
animatorValue.setDuration(2000);
animatorValue.setValueUpdateListener(mAnimatorUpdateListener);
animatorValue.start();
}

增加一个设置类型的函数 SetType,代码如下

public enum LoadingViewType {
// 支持的类型
WATER, BALLOON, FISH, CIRCLE;
}

// 设置动画的类型
public boolean SetType(LoadingViewType type) {
switch (type) {
case WATER:
loadingRander = new LoadingRanderWatter();
break;
case BALLOON:
loadingRander = new LoadingRanderBalloon();
break;
case FISH:
loadingRander = new LoadingRanderFish();
break;
case CIRCLE:
loadingRander = new LoadingRanderCircle();
break;
default:
return false;
}
return true;
}

3.3. 新建一个 LoadingRander 类

LoadingRander 是动画绘制的基类,它有两个对外接口,代码如下。

public class LoadingRander {
protected float mProgress;
protected float mWidth;
protected float mHeight;
protected float mTextSize;
public LoadingRander() {
}
// 设置进度
public void setProgess(float progress) {
mProgress = progress;
}
// 绘制
protected void draw(Canvas canvas, Rect bounds) {
return;
}
}

3.4. 新建四个 LoadingRander 的子类

分别完成四种风格动画的绘制(重写基类的 draw 函数)。

3.5. 编译 HAR 包

利用 Gradle 可以将 HarmonyOS Library 库模块构建为 HAR 包,构建 HAR 包的方法如下:
在 Gradle 构建任务中,双击 PackageDebugHar 或 PackageReleaseHar 任务,构建 Debug 类型
或 Release 类型的 HAR。

待构建任务完成后,可以在工程目录中的 loadingview> bulid > outputs > har 目录中,获取生
成的 HAR 包

码牛课堂也为了积极培养鸿蒙生态人才,让大家都能学习到鸿蒙开发最新的技术,针对一些在职人员、0基础小白、应届生/计算机专业、鸿蒙爱好者等人群,整理了一套纯血版鸿蒙(HarmonyOS Next)全栈开发技术的学习路线。大家可以进行参考学习:https://qr21.cn/FV7h05

①全方位,更合理的学习路径
路线图包括ArkTS基础语法、鸿蒙应用APP开发、鸿蒙能力集APP开发、次开发多端部署开发、物联网开发等九大模块,六大实战项目贯穿始终,由浅入深,层层递进,深入理解鸿蒙开发原理!

②多层次,更多的鸿蒙原生应用
路线图将包含完全基于鸿蒙内核开发的应用,比如一次开发多端部署、自由流转、元服务、端云一体化等,多方位的学习内容让学生能够高效掌握鸿蒙开发,少走弯路,真正理解并应用鸿蒙的核心技术和理念。

③实战化,更贴合企业需求的技术点
学习路线图中的每一个技术点都能够紧贴企业需求,经过多次真实实践,每一个知识点、每一个项目,都是码牛课堂鸿蒙研发团队精心打磨和深度解析的成果,注重对学生的细致教学,每一步都确保学生能够真正理解和掌握。

为了能让大家更好的学习鸿蒙(HarmonyOS NEXT)开发技术,这边特意整理了《鸿蒙开发学习手册》(共计890页),希望对大家有所帮助:https://qr21.cn/FV7h05

《鸿蒙开发学习手册》:https://qr21.cn/FV7h05

如何快速入门:

  1. 基本概念
  2. 构建第一个ArkTS应用
  3. ……

开发基础知识:https://qr21.cn/FV7h05

  1. 应用基础知识
  2. 配置文件
  3. 应用数据管理
  4. 应用安全管理
  5. 应用隐私保护
  6. 三方应用调用管控机制
  7. 资源分类与访问
  8. 学习ArkTS语言
  9. ……

基于ArkTS 开发:https://qr21.cn/FV7h05

  1. Ability开发
  2. UI开发
  3. 公共事件与通知
  4. 窗口管理
  5. 媒体
  6. 安全
  7. 网络与链接
  8. 电话服务
  9. 数据管理
  10. 后台任务(Background Task)管理
  11. 设备管理
  12. 设备使用信息统计
  13. DFX
  14. 国际化开发
  15. 折叠屏系列
  16. ……

鸿蒙开发面试真题(含参考答案):https://qr21.cn/FV7h05

大厂鸿蒙面试题::https://qr18.cn/F781PH

鸿蒙开发面试大盘集篇(共计319页):https://qr18.cn/F781PH

1.项目开发必备面试题
2.性能优化方向
3.架构方向
4.鸿蒙开发系统底层方向
5.鸿蒙音视频开发方向
6.鸿蒙车载开发方向
7.鸿蒙南向开发方向

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值