当前位置:   article > 正文

HarmonyOS实战—自定义组件_ohos构建自定义服务实战

ohos构建自定义服务实战

当现有的UI组件无法满足我们的开发需求时,例如我们想开发一个用于步行目标进度的显示,全部使用文本展示或一条直直的进度条加文本对于用户来是死板的。如果我们想用一个圆环之类的形式来展示,需要自定义组件了。

最终效果 

目录

最终效果 

自定义布局

继承组件基类

获取组件大小

组件构成分析

绘制布局

初始化画笔函数的调用时机

设置监听

自定义XML属性

引用自定义属性

结束语


自定义布局

继承组件基类

组件的基类是Component,自定义组件时应继承Component或其子类并至少重写以下构造函数。

  1. public class WalkView extends Component {
  2. public WalkView(Context context) {
  3. super(context);
  4. }
  5. public WalkView(Context context, AttrSet attrSet) {
  6. super(context, attrSet);
  7. }
  8. }

一个参数的构造函数用于我们在JAVA代码中初始化的应用,两参数的构造函数用于在XML中使用。

获取组件大小

在绘制内容之前,我们需要知道组件的大小,根据组件的大小进行内容的调整。

获取组件的大小我们需要实现布局大小的监听类:Component.EstimateSizeListener

  1. public class WalkView extends Component implements Component.EstimateSizeListener{
  2. ......
  3. @Override
  4. public boolean onEstimateSize(int widthEstimateConfig, int heightEstimateConfig) {
  5. // 根据配置获取宽高
  6. int width = Component.EstimateSpec.getSize(widthEstimateConfig);
  7. int height = Component.EstimateSpec.getSize(heightEstimateConfig);
  8. // 将获取到宽高设置给组件
  9. setEstimatedSize(
  10. Component.EstimateSpec.getChildSizeWithMode(width, width, Component.EstimateSpec.PRECISE),
  11. Component.EstimateSpec.getChildSizeWithMode(height, height, Component.EstimateSpec.PRECISE));
  12. return true;
  13. }
  14. }

组件构成分析

分析:我们要实现上面的效果需要3个Paint,圆环背景、圆环前景与文字。

  1. public class WalkView extends Component implements Component.EstimateSizeListener{
  2. ......
  3. /**
  4. * 背景圆环宽度
  5. */
  6. private float backCircleWidth = 10f;
  7. /**
  8. * 进度圆环宽度
  9. */
  10. private float scheduleCircleWidth = 16f;
  11. /**
  12. * 两个圆环画笔
  13. */
  14. private Paint backCirclePaint;
  15. private Paint scheduleCirclePaint;
  16. /**
  17. * 文字画笔
  18. */
  19. private Paint textPaint;
  20. /**
  21. * 文字大小
  22. */
  23. private int textSize = 50;
  24. ......
  25. private void initPaint() {
  26. backCirclePaint = new Paint();
  27. // 描边
  28. backCirclePaint.setStyle(Paint.Style.STROKE_STYLE);
  29. // 圆角
  30. backCirclePaint.setStrokeCap(Paint.StrokeCap.ROUND_CAP);
  31. // 抗锯齿
  32. backCirclePaint.setAntiAlias(true);
  33. // 抗抖动
  34. backCirclePaint.setDither(true);
  35. backCirclePaint.setStrokeWidth(backCircleWidth);
  36. backCirclePaint.setColor(Color.LTGRAY);
  37. backCirclePaint.setAlpha(0.3f);
  38. scheduleCirclePaint = new Paint();
  39. scheduleCirclePaint.setStyle(Paint.Style.STROKE_STYLE);
  40. scheduleCirclePaint.setStrokeCap(Paint.StrokeCap.ROUND_CAP);
  41. scheduleCirclePaint.setAntiAlias(true);
  42. scheduleCirclePaint.setDither(true);
  43. scheduleCirclePaint.setStrokeWidth(scheduleCircleWidth);
  44. // 渐变色数组
  45. Color[] colors = new Color[]{new Color(Color.getIntColor("#9CECFB")), new Color(Color.getIntColor("#0052D4"))};
  46. // 初始化扫描着色器,使其在中心位置。
  47. SweepShader shader = new SweepShader(getWidth() / 2f, getHeight() / 2f, colors, null);
  48. /*
  49. * Shader默认是从0角度开始我们将其旋转270度使其0度在270的位置。
  50. * 下方之所以旋转263度在ROUND_CAP模式下在圆环的开始处会出现渐变
  51. * 色的最后一种,在BUTT_CAP模式下则没有。这个问题已经在论坛反馈
  52. * 不知后续会不会修复
  53. * */
  54. Matrix matrix = new Matrix();
  55. matrix.setRotate(263, getWidth() / 2f, getHeight() / 2f);
  56. shader.setShaderMatrix(matrix);
  57. // 为画笔设置着色器
  58. scheduleCirclePaint.setShader(shader, Paint.ShaderType.SWEEP_SHADER);
  59. // 文字画笔
  60. textPaint = new Paint();
  61. // 设置文字大小
  62. textPaint.setTextSize(textSize);
  63. }
  64. ......
  65. }

绘制布局

画笔初始后我们需要在绘制任务中将我们想要的布局使用对应的画笔绘制到画笔中。绘制任务我们需要实现绘制任务接口:Component.DrawTask

分析:因为是进度效果,我们需要确定当前值和总值。也就是已经行走的步数和我们设定的目标步数以确定前景弧的长度。

  1. public class WalkView extends Component implements Component.EstimateSizeListener, Component.DrawTask{
  2. ......
  3. /**
  4. * 当前步数,本文不讨论运动接口。假设当前已经行走3560步。
  5. */
  6. private int walkNum = 3560;
  7. /**
  8. * 目标步数
  9. */
  10. private int walkGoal = 5000;
  11. ......
  12. @Override
  13. public void onDraw(Component component, Canvas canvas) {
  14. int width = getWidth();
  15. int height = getHeight();
  16. // 找到最小长度
  17. int minLength = Math.min(width, height);
  18. // 确定中心点
  19. Point centerPoint = new Point(width / 2f, height / 2f);
  20. int center = minLength / 2;
  21. // 半径,由于是描边模式需要将边宽度减掉
  22. int radius = center - (int) (backCircleWidth);
  23. // 绘制背景圆环
  24. canvas.drawCircle(centerPoint, radius, backCirclePaint);
  25. // 弧所处矩形,上下左右点就是中心点到各边的半径距离。
  26. RectFloat rectFloat = new RectFloat(
  27. centerPoint.getPointX() - radius,
  28. centerPoint.getPointY() - radius,
  29. centerPoint.getPointX() + radius,
  30. centerPoint.getPointY() + radius);
  31. // 弧形进度。就是圆周360°乘上当前比率。
  32. float progress = 360;
  33. if (walkGoal > 0 && walkNum < walkGoal) {
  34. progress = ((float)walkNum / walkGoal) * 360;
  35. }
  36. // 设置弧形的起始位置,弧长以及两端点是否连接。
  37. Arc arc = new Arc(270, progress, false);
  38. // 绘制弧形
  39. canvas.drawArc(rectFloat, arc, scheduleCirclePaint);
  40. String tile = "步数";
  41. // 计算文字长度
  42. float iLen = textPaint.measureText(walkNum + "");
  43. float tLen = textPaint.measureText(tile);
  44. // 设置文字起点左边,绘制文字
  45. canvas.drawText(textPaint, walkNum + "", (float) width / 2 - iLen / 2, (float) height / 2 - textPaint.getTextSize() / 3f);
  46. canvas.drawText(textPaint, tile, (float) width / 2 - tLen / 2, (float) height / 2 + textPaint.getTextSize());
  47. }
  48. ......
  49. }

初始化画笔函数的调用时机

initPaint函数中包含对布局大小的引用,因此其初始化的时机应当在布局大小确认后。 

  1. @Override
  2. public boolean onEstimateSize(int widthEstimateConfig, int heightEstimateConfig) {
  3. ......
  4. setEstimatedSize(......);
  5. // 初始化画笔
  6. initPaint();
  7. return true;
  8. }

设置监听

我们实现了布局大小的监听和绘制任务接口还需要对其引用

  1. public WalkView(Context context) {
  2. super(context);
  3. // 设置测量组件的侦听器
  4. setEstimateSizeListener(this);
  5. // 添加绘制任务
  6. addDrawTask(this);
  7. }
  8. public WalkView(Context context, AttrSet attrSet) {
  9. super(context, attrSet);
  10. // 设置测量组件的侦听器
  11. setEstimateSizeListener(this);
  12. // 添加绘制任务
  13. addDrawTask(this);
  14. }

自定义XML属性

因为其中包含文字,描边的粗细等等,根据不同的场景我们可能会有多种格式,我们不能每次都去修改代码。尤其是封装成API调用后更不可能修改。能不能有向系统自带的组件我通过类似text_size的属性在XML中直接进行配置,答案是,能~。

 首先我们在XML布局文件中引用 ohos-auto 自定义名称为app的空间

使用app空间设置(圆环宽度)ring_width和(字体大小)text_size两个属性。这里可以举一反三设置颜色等等属性。

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <DependentLayout
  3. xmlns:app="http://schemas.huawei.com/res/ohos-auto"
  4. xmlns:ohos="http://schemas.huawei.com/res/ohos"
  5. ohos:height="match_parent"
  6. ohos:width="match_parent">
  7. <com.example.helloharmony.myview.MyView
  8. app:ring_width="50"
  9. app:text_size="80"
  10. ohos:height="200vp"
  11. ohos:id="$+id:my_view"
  12. ohos:visibility="visible"
  13. ohos:width="200vp"
  14. ohos:horizontal_center="true"
  15. ohos:top_margin="80vp"/>
  16. ......
  17. </DependentLayout>

引用自定义属性

在XML文件中自定义了属性后不会生效,我们还需要在JAVA代码中进行引用。这个时候两个参数的构造函数就排上用场了。 

  1. public WalkView(Context context, AttrSet attrSet) {
  2. super(context, attrSet);
  3. // 判断是否存在名称为 text_size 的属性
  4. if (attrSet.getAttr("text_size").isPresent()) {
  5. // 如果有我们就应用它
  6. textSize = attrSet.getAttr("text_size").get().getIntegerValue();
  7. }
  8. // 判断是否存在名称为 ring_width 的属性
  9. if (attrSet.getAttr("ring_width").isPresent()) {
  10. // 如果有我们就应用它
  11. float ringWidth = attrSet.getAttr("ring_width").get().getFloatValue();
  12. backCircleWidth = ringWidth - 6;
  13. scheduleCircleWidth = ringWidth + 12;
  14. }
  15. // 设置测量组件的侦听器
  16. setEstimateSizeListener(this);
  17. // 添加绘制任务
  18. addDrawTask(this);
  19. }

结束语

到此图片的效果就实现了。当然上面知识基本的常识,我们还需要对数据的更新、进度圆环的逐段绘制产生动效等等这里就不再赘述了。写博客的目的在于抛砖引玉和基础教程与学习,基础都有了其他都是小意思,加油!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/317875
推荐阅读
相关标签
  

闽ICP备14008679号