鸿蒙OS FlexLayout.LayoutConfig

2022-09-22 13:48 更新

FlexLayout.LayoutConfig

java.lang.Object

|---ohos.agp.components.ComponentContainer.LayoutConfig

|---|---ohos.agp.components.FlexLayout.LayoutConfig

public static class FlexLayout.LayoutConfig
extends ComponentContainer.LayoutConfig

为 FlexLayout 中的组件实现布局参数和属性的配置。

字段摘要

从类 ohos.agp.components.ComponentContainer.LayoutConfig 继承的字段
height, MATCH_CONTENT, MATCH_PARENT, width

构造函数摘要

构造函数 描述
LayoutConfig(int width, int height) 用于根据指定的宽度和高度创建 FlexLayout.LayoutConfig 实例的构造函数。
LayoutConfig(ComponentContainer.LayoutConfig source) 用于根据给定 ComponentContainer.LayoutConfig 的属性创建 FlexLayout.LayoutConfig 实例的构造函数。
LayoutConfig(FlexLayout.LayoutConfig source) 用于根据另一个 FlexLayout.LayoutConfig 的属性创建 FlexLayout.LayoutConfig 的构造函数。
LayoutConfig(Context context, AttrSet attrSet) 用于根据上下文和属性集创建 FlexLayout.LayoutConfig 实例的构造函数。

方法总结

修饰符和类型 方法 描述
AlignSelf getAlignSelf() 获取组件的 align self 属性。
float getFlexBasisFraction() 获取分数值,它决定了组件相对于其 FlexLayout 的主要大小。
float getFlexGrow() 获取组件的弹性增长因子。
float getFlexShrink() 获取组件的弹性收缩系数。
int getMaxHeight() 获取组件的最大高度。
int getMaxWidth() 获取组件的最大宽度。
int getMinHeight() 获取组件的最小高度。
int getMinWidth() 获取组件的最小宽度。
void setAlignSelf(AlignSelf alignSelf) 设置 align self 属性,该属性指定组件如何沿交叉轴对齐。
void setFlexBasisFraction(float flexBasisFraction) 设置分数值,该值确定组件相对于其容器的主要大小的初始主要大小。
void setFlexGrow(float flexGrow) 设置 flex 增长因子,它决定了当分配一个正的可用空间时,该组件相对于 FlexLayout 中的其他组件将增长多少。
void setFlexShrink(float flexShrink) 设置 flex 收缩因子,它决定了当分配负的可用空间时,该组件相对于 FlexLayout 中的其他组件将收缩多少。
void setMaxHeight(int maxHeight) 设置组件的最大高度。
void setMaxWidth(int maxWidth) 设置组件的最大宽度。
void setMinHeight(int minHeight) 设置组件的最小高度。
void setMinWidth(int minWidth) 设置组件的最小宽度。
从类 ohos.agp.components.ComponentContainer.LayoutConfig 继承的方法
clone, getHorizontalEndMargin, getHorizontalStartMargin, getLayoutDirection, getMarginBottom, getMarginLeft, getMarginRight, getMargins, getMarginsLeftAndRight, getMarginsTopAndBottom, getMarginTop, isMarginsRelative, setMarginBottom, setMarginLeft, setMarginRight, setMargins, setMarginsLeftAndRight, setMarginsRelative, setMarginsTopAndBottom, setMarginTop
从类 java.lang.Object 继承的方法
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

构造函数详细信息

LayoutConfig

public LayoutConfig(Context context, AttrSet attrSet)

用于根据上下文和属性集创建 FlexLayout.LayoutConfig 实例的构造函数。

参数:

参数名称 参数描述
context 指示应用程序上下文。
attrSet 指示要使用的属性集。

LayoutConfig

public LayoutConfig(int width, int height)

用于根据指定的宽度和高度创建 FlexLayout.LayoutConfig 实例的构造函数。

参数:

参数名称 参数描述
width 指示要使用的宽度,可以是特定值、ComponentContainer.LayoutConfig.MATCH_PARENT 或 ComponentContainer.LayoutConfig.MATCH_CONTENT。
height 指示要使用的高度,可以是特定值、ComponentContainer.LayoutConfig.MATCH_PARENT 或 ComponentContainer.LayoutConfig.MATCH_CONTENT。

LayoutConfig

public LayoutConfig(ComponentContainer.LayoutConfig source)

用于根据给定 ComponentContainer.LayoutConfig 的属性创建 FlexLayout.LayoutConfig 实例的构造函数。

参数:

参数名称 参数描述
source 表示源布局。

LayoutConfig

public LayoutConfig(FlexLayout.LayoutConfig source)

用于根据另一个 FlexLayout.LayoutConfig 的属性创建 FlexLayout.LayoutConfig 的构造函数。

参数:

参数名称 参数描述
source 表示源布局。

方法详情

setMinWidth

public void setMinWidth(int minWidth)

设置组件的最小宽度。

参数:

参数名称 参数描述
minWidth 指示要设置的最小宽度。 该值必须在 [0, 0xFFFFFF] 范围内。

getMinWidth

public int getMinWidth()

获取组件的最小宽度。

返回:

如果有的话,返回最小宽度; 否则返回 0。

setMinHeight

public void setMinHeight(int minHeight)

设置组件的最小高度。

参数:

参数名称 参数描述
minHeight 指示要设置的最小高度。 该值必须在 [0, 0xFFFFFF] 范围内。

getMinHeight

public int getMinHeight()

获取组件的最小宽度。

返回:

如果有的话,返回最小高度; 否则返回 0。

setMaxWidth

public void setMaxWidth(int maxWidth)

设置组件的最大宽度。

参数:

参数名称 参数描述
maxWidth 指示要设置的最大宽度。 该值必须在 [0, 0xFFFFFF] 范围内。

getMaxWidth

public int getMaxWidth()

获取组件的最大宽度。

返回:

返回最大宽度(如果有); 否则返回 0xFFFFFF。

setMaxHeight

public void setMaxHeight(int maxHeight)

设置组件的最大高度。

参数:

参数名称 参数描述
maxHeight 指示要设置的最大高度。 该值必须在 [0, 0xFFFFFF] 范围内。

getMaxHeight

public int getMaxHeight()

获取组件的最大高度。

返回:

返回最大高度(如果有); 否则返回 0xFFFFFF。

setFlexGrow

public void setFlexGrow(float flexGrow)

设置 flex 增长因子,它决定了当分配一个正的可用空间时,该组件相对于 FlexLayout 中的其他组件将增长多少。

参数:

参数名称 参数描述
flexGrow 指示要设置的弹性增长因子。 负值将被忽略。

getFlexGrow

public float getFlexGrow()

获取组件的弹性增长因子。

返回:

返回弹性增长因子。

setFlexShrink

public void setFlexShrink(float flexShrink)

设置 flex 收缩因子,它决定了当分配负的可用空间时,该组件相对于 FlexLayout 中的其他组件将收缩多少。

参数:

参数名称 参数描述
flexShrink 指示要设置的弹性收缩系数。 负值将被忽略。

getFlexShrink

public float getFlexShrink()

获取组件的弹性收缩系数。

返回:

返回弹性收缩因子。

setAlignSelf

public void setAlignSelf(AlignSelf alignSelf)

设置 align self 属性,该属性指定组件如何沿交叉轴对齐。

参数:

参数名称 参数描述
alignSelf 指示要设置的 align self 属性。

getAlignSelf

public AlignSelf getAlignSelf()

获取组件的 align self 属性。

返回:

返回对齐自身属性。

setFlexBasisFraction

public void setFlexBasisFraction(float flexBasisFraction)

设置分数值,该值确定组件相对于其容器的主要大小的初始主要大小。

该设置仅在确定了 FlexLayout 的主要尺寸时有效,例如在测量过程中布局的 EstimateSpec 为 EstimateSpec#PRECISE。 它将覆盖 ComponentContainer.LayoutConfig.width 或 ComponentContainer.LayoutConfig.height 指定的尺寸。

参数:

参数名称 参数描述
flexBasisFraction 表示要设置的小数值,必须在 [0.0, 1.0] 范围内。

getFlexBasisFraction

public float getFlexBasisFraction()

获取分数值,它决定了组件相对于其 FlexLayout 的主要大小。

返回:

如果有,则返回小数值; 否则返回 -1.0。

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号