HarmonyOS自定义控件之测量与布局

系统 OpenHarmony
这里我们来分析一下测量与布局的用法,并且结合上一篇文章事件分发一起实现一个简单的滚动视差布局ParallaxLayout。

[[417822]]

想了解更多内容,请访问:

51CTO和华为官方合作共建的鸿蒙技术社区

https://harmonyos.51cto.com

在HarmonyOS中,控件最终展示到用户界面上,会经历测量(Estimate)、布局(Arrange)、绘制(Draw)等过程。这里我们来分析一下测量与布局的用法,并且结合上一篇文章事件分发一起实现一个简单的滚动视差布局ParallaxLayout。

ParallaxLayout效果图:

测量Estimate

如何自定义测量过程

首先通过setEstimateSizeListener(Component.EstimateSizeListener listener)来设置测量的回调:

  1. setEstimateSizeListener(new EstimateSizeListener() { 
  2.     @Override 
  3.     public boolean onEstimateSize(int widthEstimateSpec, int heightEstimateSpec) { 
  4.         return false
  5.     } 
  6. }); 

在EstimateSizeListener 中,第一个参数为宽度测量参数,第二个为高度测量参数,我们可以通过EstimateSpec来获取宽度、高度的模式(mode)与大小(size):

  1. int mode = EstimateSpec.getMode(widthEstimateSpec); 
  2. int size = EstimateSpec.getSize(widthEstimateSpec); 

计算了控件最终大小之后,我们可以调用setEstimatedSize(int estimatedWidth, int estimatedHeight)函数来设置最终的测量大小。注意:setEstimatedSize函数需要的是具体的大小,而非测量参数,即EstimateSpec.getSize后的具体大小

  1. setEstimatedSize(widthSize, heightSize); 

最后,如果需要让设置的测量大小生效,我们应该在onEstimateSize中返回true:

  1. setEstimateSizeListener(new EstimateSizeListener() { 
  2.     @Override 
  3.     public boolean onEstimateSize(int widthEstimateSpec, int heightEstimateSpec) { 
  4.         int widthSize = EstimateSpec.getSize(widthEstimateSpec); 
  5.         int heightSize = EstimateSpec.getSize(heightEstimateSpec); 
  6.         setEstimatedSize(widthSize, heightSize); 
  7.         return true
  8.     } 
  9. }); 

如果onEstimateSize返回true,那么最终系统不会在native层来测量大小。如果返回了false,系统还是会继续测量大小,最终的大小可能与setEstimatedSize设置的结果不一致。

在setEstimatedSize后我们就可以通过下面的函数来获取我们设置的大小:

  1. getEstimatedWidth(); // 获取测量的宽度 
  2. getEstimatedHeight(); // 获取测量的高度 

EstimateSpec

EstimateSpec是Component的内部类,EstimateSpec提供了一系列的操作测量参数的方法。

测量参数

测量参数是一个int值,它封装了来自父控件的测量需求。测量参数由模式与大小两个int值组合而成,公式如下:

  1. (size & ~EstimateSpec.ESTIMATED_STATE_BIT_MASK) | (mode & EstimateSpec.ESTIMATED_STATE_BIT_MASK) 

其中size为当前控件的大小,mode为模式。也可以通过下面的函数来,通过size和mode来生成一个测量参数:

  1. int spec = EstimateSpec.getSizeWithMode(size, mode); 

模式mode

通过EstimateSpec获取的mode有三种取值:

  • EstimateSpec.NOT_EXCEED 不超过:该模式表示父控件已经规定了当前控件大小的最大值
  • EstimateSpec.PRECISE 精确:该模式表示父控件已经规定了当前控件大小的值
  • EstimateSpec.UNCONSTRAINT 无约束:该模式表示父控件对当前控件大小没有约束,控件可以想要任何大小

在不同模式下,控件的大小是如何确定的呢?可以简单的通过下面的代码来理解:

  1. // size变量为控件期望的大小,estimateSpec变量为父控件的测量参数 
  2. final int specMode = EstimateSpec.getMode(estimateSpec); 
  3. final int specSize = EstimateSpec.getSize(estimateSpec); 
  4. final int result; 
  5. switch (specMode) { 
  6.     case EstimateSpec.NOT_EXCEED: 
  7.         result = Math.min(specSize, size); 
  8.         break; 
  9.     case EstimateSpec.PRECISE: 
  10.         result = specSize; 
  11.         break; 
  12.     case EstimateSpec.UNCONSTRAINT: 
  13.     default
  14.         result = size
  • 当mode为NOT_EXCEED时,控件的期望大小应该小于等于父控件给定的size
  • 当mode为PRECISE时,控件的大小应该等于父控件给定的size
  • 当mode为UNCONSTRAINT时,控件的大小可以为他期望的size

自定义布局

在自定义布局时,我们不仅仅要测量自己的大小,还需要测量子控件的大小。子控件可以通过estimateSize(int widthEstimatedConfig, int heightEstimatedConfig)函数来设置测量参数:

  1. child.estimateSize(widthEstimatedConfig, heightEstimatedConfig); 

注意:estimateSize的两个参数需要的是测量参数,而非具体的大小。这两个参数会传递到子控件的onEstimateSize(int widthEstimateSpec, int heightEstimateSpec)回调中。

默认情况下,子控件会根据widthEstimatedConfig与heightEstimatedConfig来确认自己的最终大小,子控件也可以通过setEstimateSizeListener来自定义其测量过程,最终其参考的测量参数就是我们通过estimateSize函数设置的测量参数。

接下来我们只需要遍历所有子控件来为他们设置测量参数就达到了测量子控件的大小的目的。自定义布局的测量过程基本就是包含了这两个步骤:为所有子控件设置测量参数以及测量自己的大小。

子控件的测量参数

那么,最重要的问题是,我们如何确定子控件的测量参数到底应该是多少,换句话说我们如何生成或者获取子控件的测量参数呢?子控件的测量参数与很多因素有关,如父控件的测量参数、父控件的padding值、子控件自己的期望大小。我们可以根据这几个参数来确定子控件的测量参数。

这里我们通过一个帮助函数来生成子控件的测量参数,首先函数的定义应该如下:

  1. /** 
  2.  * 根据父component的spec、padding以及子component的期望大小,生成子component的spec 
  3.  * @param spec 父component的spec 
  4.  * @param padding 父component的padding 
  5.  * @param childDimension 子component的期望大小 
  6.  * @return 子component的spec 
  7. */ 
  8. public static int getChildEstimateSpec(int spec, int padding, int childDimension); 

注意:childDimension应该怎么获取呢?实际上就是ComponentContainer.LayoutConfig中的width或者height,测量高度就取height、宽度就取width。

接下来我们应该根据父控件的mode以及childDimension来确定子控件的mode与size,并生成测量参数。具体参考如下代码:

  1. public static int getChildEstimateSpec(int spec, int padding, int childDimension) { 
  2.         int specMode = EstimateSpec.getMode(spec); 
  3.         int specSize = EstimateSpec.getSize(spec); 
  4.  
  5.         int size = Math.max(0, specSize - padding); 
  6.  
  7.         int resultSize = 0; 
  8.         int resultMode = 0; 
  9.  
  10.         switch (specMode) { 
  11.             // Parent has imposed an exact size on us 
  12.             case EstimateSpec.PRECISE: 
  13.                 if (childDimension >= 0) { 
  14.                     resultSize = childDimension; 
  15.                     resultMode = EstimateSpec.PRECISE; 
  16.                 } else if (childDimension == ComponentContainer.LayoutConfig.MATCH_PARENT) { 
  17.                     // Child wants to be our size. So be it. 
  18.                     resultSize = size
  19.                     resultMode = EstimateSpec.PRECISE; 
  20.                 } else if (childDimension == ComponentContainer.LayoutConfig.MATCH_CONTENT) { 
  21.                     // Child wants to determine its own size. It can't be 
  22.                     // bigger than us. 
  23.                     resultSize = size
  24.                     resultMode = EstimateSpec.NOT_EXCEED; 
  25.                     if (size == 0) { 
  26.                         // size will not be 0 when resultMode is NOT_EXCEED, don't know why 
  27.                         resultMode = EstimateSpec.PRECISE; 
  28.                     } 
  29.                 } 
  30.                 break; 
  31.  
  32.             // Parent has imposed a maximum size on us 
  33.             case EstimateSpec.NOT_EXCEED: 
  34.                 if (childDimension >= 0) { 
  35.                     // Child wants a specific size... so be it 
  36.                     resultSize = childDimension; 
  37.                     resultMode = EstimateSpec.PRECISE; 
  38.                 } else if (childDimension == ComponentContainer.LayoutConfig.MATCH_PARENT) { 
  39.                     // Child wants to be our size, but our size is not fixed. 
  40.                     // Constrain child to not be bigger than us. 
  41.                     resultSize = size
  42.                     resultMode = EstimateSpec.NOT_EXCEED; 
  43.                 } else if (childDimension == ComponentContainer.LayoutConfig.MATCH_CONTENT) { 
  44.                     // Child wants to determine its own size. It can't be 
  45.                     // bigger than us. 
  46.                     resultSize = size
  47.                     resultMode = EstimateSpec.NOT_EXCEED; 
  48.                     if (size == 0) { 
  49.                         // size will not be 0 when resultMode is NOT_EXCEED, don't know why 
  50.                         resultMode = EstimateSpec.PRECISE; 
  51.                     } 
  52.                 } 
  53.                 break; 
  54.  
  55.             // Parent asked to see how big we want to be 
  56.             case EstimateSpec.UNCONSTRAINT: 
  57.                 if (childDimension >= 0) { 
  58.                     // Child wants a specific size... let him have it 
  59.                     resultSize = childDimension; 
  60.                     resultMode = EstimateSpec.PRECISE; 
  61.                 } else if (childDimension == ComponentContainer.LayoutConfig.MATCH_PARENT) { 
  62.                     // Child wants to be our size... find out how big it should 
  63.                     // be 
  64.                     resultSize = size
  65.                     resultMode = EstimateSpec.UNCONSTRAINT; 
  66.                 } else if (childDimension == ComponentContainer.LayoutConfig.MATCH_CONTENT) { 
  67.                     // Child wants to determine its own size.... find out how 
  68.                     // big it should be 
  69.                     resultSize = size
  70.                     resultMode = EstimateSpec.UNCONSTRAINT; 
  71.                 } 
  72.                 break; 
  73.         } 
  74.  
  75.         return makeEstimateSpec(resultSize, resultMode); 
  76.     } 

makeEstimateSpec函数实际就是(size & ~EstimateSpec.ESTIMATED_STATE_BIT_MASK) | (mode & EstimateSpec.ESTIMATED_STATE_BIT_MASK)的值。

测量过程到此就基本结束,接下来看看稍微简单一点的布局。

布局Arrange

如何自定义布局过程

首先通过setArrangeListener(ComponentContainer.ArrangeListener listener)来设置测量的回调:

  1. setArrangeListener(new ArrangeListener() { 
  2.     @Override 
  3.     public boolean onArrange(int l, int t, int width, int height) { 
  4.         return false
  5.     } 
  6. }); 

与测量类似,布局也是通过回调函数的方式来自定义。其中第一个参数为该控件的left值,第二个为top值,第三个为宽度,第四个为高度。

setArrangeListener是在ComponentContainer中定义的,Component中没有。

与测量不同的是,控件本身的位置与宽高已经由父控件确定了,即为onArrange回调中的四个参数。

在Arrange过程中,我们需要做的就是递归为每个子控件设置位置。通过调用子控件的arrange(int left, int top, int width, int height)函数来排列子元素:

  1. child.arrange(lefttop, child.getEstimatedWidth(), child.getEstimatedHeight()); 

同样的,onArrange回调需要返回true,才会使布局生效。

在调用了child的arrange函数后,就能通过child.getWidth()与child.getHeight()来获取子控件的宽高了。

一个简单的垂直顺序排列布局的简化代码如下:

  1. @Override 
  2. public boolean onArrange(int l, int t, int width, int height) { 
  3.     int childCount = getChildCount(); 
  4.     int childTop = t; 
  5.     for(int i = 0; i < childCount; i++) { 
  6.         Component child = getComponentAt(i); 
  7.         int childHeight = child.getEstimatedHeight(); 
  8.         child.arrange(l, childTop, child.getEstimatedWidth(), childHeight); 
  9.         childTop += childHeight; 
  10.     } 
  11.      
  12.     return true

注意:不管是onArrange回调还是子控件的arrange函数,最后两个参数都是宽与高,而不是right与bottom。

综合

接下来我们结合我们前一篇自定义控件之触摸事件,与测量、布局一起,来自定义一个简单的滚动视差布局ParallaxLayout。

  1. ParallaxLayout包含有两个子控件,第一个固定150vp的Image。第二个是高度为match_parent的Text控件
  2. 在onEstimateSize中,主要是遍历子控件为其设置测量参数,并为自己设置测量结果。Image的测量高度为固定150vp,Text的高度与布局一致,我们需要通过测量参数与LayoutConfig计算出所有子控件的高度与自己的高度。
  3. 在onArrange中,按顺序垂直排列子控件。由于Image+Text的高度已经超出了自己的高度,因此Text的底部会有一部分显示不出来。
  4. 在onTouchEvent中,通过计算手指的移动距离,为每个子控件setTranslateY,来实现位移的效果。最大位移距离为Image的高度。
  5. 通过为Image设置一半的translateY,为Text设置全部的translateY来实现滚动视差效果,关键代码如下:
  1. for (int i = 0; i < childCount; i++) { 
  2.             Component child = getComponentAt(i); 
  3.             if (i == 0) { 
  4.                 child.setTranslationY(deltaY / 2); 
  5.             } else { 
  6.                 child.setTranslationY(deltaY); 
  7.             } 
  8.         } 

具体代码参考:parallax-layout

想了解更多内容,请访问:

51CTO和华为官方合作共建的鸿蒙技术社区

https://harmonyos.51cto.com

 

责任编辑:jianghua 来源: 鸿蒙社区
相关推荐

2021-08-11 14:29:20

鸿蒙HarmonyOS应用

2021-08-25 10:14:51

鸿蒙HarmonyOS应用

2021-09-06 14:58:23

鸿蒙HarmonyOS应用

2015-02-11 17:49:35

Android源码自定义控件

2021-09-02 10:00:42

鸿蒙HarmonyOS应用

2013-04-19 10:14:24

2009-06-08 20:13:36

Eclipse自定义控

2009-08-06 09:18:01

ASP.NET自定义控ASP.NET控件开发

2009-07-31 10:23:09

ASP.NET源码DateTimePic

2017-02-17 09:37:12

Android自定义控件方法总结

2011-08-18 09:44:33

iPhone SDK仪表控件UIDialView

2009-08-06 17:52:45

ASP.NET控件开发自定义控件

2010-08-11 09:01:41

Flex4布局

2022-06-30 14:02:07

鸿蒙开发消息弹窗组件

2021-10-26 10:07:02

鸿蒙HarmonyOS应用

2022-07-15 16:45:35

slider滑块组件鸿蒙

2022-06-20 15:43:45

switch开关鸿蒙

2014-12-10 10:37:45

Android自定义布局

2009-08-03 13:34:06

自定义C#控件

2009-08-03 13:39:46

C#自定义用户控件
点赞
收藏

51CTO技术栈公众号