鸿蒙OS MagicLayout.LayoutConfig
MagicLayout.LayoutConfig
java.lang.Object
|---ohos.agp.components.ComponentContainer.LayoutConfig
|---|---ohos.agp.components.MagicLayout.LayoutConfig
public static class MagicLayout.LayoutConfig
extends ComponentContainer.LayoutConfig
指定 MagicLayout 中组件的布局参数。
Since:
5
字段摘要
修饰符和类型 | 字段 | 描述 |
---|---|---|
int | referenceSize | 表示换行参考大小。 |
static int | UNSPECIFIED_HIDE_PRIORITY | 表示默认隐藏优先级。 |
static int | UNSPECIFIED_REFERENCE_SIZE | 指示换行参考尺寸的默认值,它等于组件的宽度及其边距。 |
从类 ohos.agp.components.ComponentContainer.LayoutConfig 继承的字段 |
---|
height, MATCH_CONTENT, MATCH_PARENT, width |
构造函数摘要
构造函数 | 描述 |
---|---|
LayoutConfig() | 用于创建 LayoutConfig 实例的默认构造函数,默认宽度和高度为 ComponentContainer.LayoutConfig#MATCH_CONTENT。 |
LayoutConfig(int width, int height) | 用于创建具有指定宽度和高度的 LayoutConfig 实例的构造函数。 |
LayoutConfig(ComponentContainer.LayoutConfig source) | 用于创建 LayoutConfig 实例的构造函数,使用父布局的参数。 |
LayoutConfig(MagicLayout.LayoutConfig source) | 用于创建 LayoutConfig 实例的构造函数,使用当前 MagicLayout 的参数(包括宽度、高度、填充、边距、对齐方式和换行参考大小)。 |
LayoutConfig(Context context, AttrSet attrSet) | 用于创建具有指定应用程序上下文和属性集的 LayoutConfig 实例的构造函数。 |
方法总结
修饰符和类型 | 方法 | 描述 |
---|---|---|
void | applyToComponent(Component component) | |
int | getHidePriority() | 获取 MagicLayout 中组件的隐藏优先级。 |
float | getLayoutWeight() | 获取 MagicLayout 中组件的权重。 |
int | getMaxScaleHeight() | 获取 MagicLayout 中缩放组件的最大高度。 |
int | getMaxScaleWidth() | 获取 MagicLayout 中缩放组件的最大宽度。 |
int | getMinScaleHeight() | 获取 MagicLayout 中缩放组件的最小高度。 |
int | getMinScaleWidth() | 获取 MagicLayout 中缩放组件的最小宽度。 |
float | getScaleRatioOfParentHeight() | 获取缩放组件的高度与其父 MagicLayout 高度的比率。 |
float | getScaleRatioOfParentWidth() | 获取缩放组件的宽度与其父 MagicLayout 宽度的比率。 |
void | setHidePriority(int hidePriority) | 设置 MagicLayout 中组件的隐藏优先级。 |
void | setLayoutWeight(float layoutWeight) | 设置 MagicLayout 中组件的权重。 |
void | setMaxScaleHeight(int maxScaleHeight) | 设置 MagicLayout 中缩放组件的最大高度。 |
void | setMaxScaleWidth(int maxScaleWidth) | 设置 MagicLayout 中缩放组件的最大宽度。 |
void | setMinScaleHeight(int minScaleHeight) | 设置 MagicLayout 中缩放组件的最小高度。 |
void | setMinScaleWidth(int minScaleWidth) | 设置 MagicLayout 中缩放组件的最小宽度。 |
void | setScaleRatioOfParentHeight(float heightRatio) | 设置缩放组件的高度与其父 MagicLayout 高度的比率。 |
void | setScaleRatioOfParentWidth(float widthRatio) | 设置缩放组件的宽度与其父 MagicLayout 的宽度的比率。 |
从类 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 |
字段详细信息
UNSPECIFIED_HIDE_PRIORITY
public static final int UNSPECIFIED_HIDE_PRIORITY
表示默认隐藏优先级。
Since:
7
UNSPECIFIED_REFERENCE_SIZE
public static final int UNSPECIFIED_REFERENCE_SIZE
指示换行参考尺寸的默认值,它等于组件的宽度及其边距。
Since:
5
referenceSize
public int referenceSize
表示换行参考大小。 如果新组件的换行参考尺寸与当前行中现有组件的换行参考尺寸之和超过布局的总宽度,则该组件将被放置到下一行。
Since:
5
构造函数详细信息
LayoutConfig
public LayoutConfig()
用于创建 LayoutConfig 实例的默认构造函数,默认宽度和高度为 ComponentContainer.LayoutConfig#MATCH_CONTENT。
Since:
5
LayoutConfig
public LayoutConfig(Context context, AttrSet attrSet)
用于创建具有指定应用程序上下文和属性集的 LayoutConfig 实例的构造函数。
参数:
参数名称 | 参数描述 |
---|---|
context | 指示应用程序上下文。 |
attrSet | 指示要使用的属性集。 |
Since:
5
LayoutConfig
public LayoutConfig(int width, int height)
用于创建具有指定宽度和高度的 LayoutConfig 实例的构造函数。
参数:
参数名称 | 参数描述 |
---|---|
width | 表示要设置的宽度。 |
height | 表示要设置的高度。 |
Since:
5
LayoutConfig
public LayoutConfig(ComponentContainer.LayoutConfig source)
用于创建 LayoutConfig 实例的构造函数,使用父布局的参数。
使用填充、边距、对齐模式和换行参考大小(由 referenceSize 表示)的默认值。
参数:
参数名称 | 参数描述 |
---|---|
source | 表示父布局的参数。 |
Since:
5
LayoutConfig
public LayoutConfig(MagicLayout.LayoutConfig source)
用于创建 LayoutConfig 实例的构造函数,使用当前 MagicLayout 的参数(包括宽度、高度、填充、边距、对齐方式和换行参考大小)。
参数:
参数名称 | 参数描述 |
---|---|
source | 表示当前MagicLayout的参数。 |
Since:
5
方法详情
getScaleRatioOfParentWidth
public float getScaleRatioOfParentWidth()
获取缩放组件的宽度与其父 MagicLayout 宽度的比率。
返回:
返回宽度比率。
Since:
7
setScaleRatioOfParentWidth
public void setScaleRatioOfParentWidth(float widthRatio)
设置缩放组件的宽度与其父 MagicLayout 的宽度的比率。
参数:
参数名称 | 参数描述 |
---|---|
widthRatio | 表示宽度比例,范围为[0.0, 1.0]。 |
Since:
7
getScaleRatioOfParentHeight
public float getScaleRatioOfParentHeight()
获取缩放组件的高度与其父 MagicLayout 高度的比率。
返回:
返回高度比。
Since:
7
setScaleRatioOfParentHeight
public void setScaleRatioOfParentHeight(float heightRatio)
设置缩放组件的高度与其父 MagicLayout 高度的比率。
参数:
参数名称 | 参数描述 |
---|---|
heightRatio | 表示高度比,范围[0.0, 1.0]。 |
Since:
7
getMaxScaleWidth
public int getMaxScaleWidth()
获取 MagicLayout 中缩放组件的最大宽度。
返回:
返回缩放组件的最大宽度。
Since:
7
setMaxScaleWidth
public void setMaxScaleWidth(int maxScaleWidth)
设置 MagicLayout 中缩放组件的最大宽度。
参数:
参数名称 | 参数描述 |
---|---|
maxScaleWidth | 表示缩放组件的最大宽度。 |
Since:
7
getMinScaleWidth
public int getMinScaleWidth()
获取 MagicLayout 中缩放组件的最小宽度。
返回:
返回缩放组件的最小宽度。
Since:
7
setMinScaleWidth
public void setMinScaleWidth(int minScaleWidth)
设置 MagicLayout 中缩放组件的最小宽度。
参数:
参数名称 | 参数描述 |
---|---|
minScaleWidth | 表示缩放组件的最小宽度。 |
Since:
7
getMaxScaleHeight
public int getMaxScaleHeight()
获取 MagicLayout 中缩放组件的最大高度。
返回:
返回缩放组件的最大高度。
Since:
7
setMaxScaleHeight
public void setMaxScaleHeight(int maxScaleHeight)
设置 MagicLayout 中缩放组件的最大高度。
参数:
参数名称 | 参数描述 |
---|---|
maxScaleHeight | 表示缩放组件的最大高度。 |
Since:
7
getMinScaleHeight
public int getMinScaleHeight()
获取 MagicLayout 中缩放组件的最小高度。
返回:
返回缩放组件的最小高度。
Since:
7
setMinScaleHeight
public void setMinScaleHeight(int minScaleHeight)
设置 MagicLayout 中缩放组件的最小高度。
参数:
参数名称 | 参数描述 |
---|---|
minScaleHeight | 指示缩放组件的最小高度。 |
Since:
7
setLayoutWeight
public void setLayoutWeight(float layoutWeight)
设置 MagicLayout 中组件的权重。
参数:
参数名称 | 参数描述 |
---|---|
layoutWeight | 表示组件的重量。 |
Since:
7
getLayoutWeight
public float getLayoutWeight()
获取 MagicLayout 中组件的权重。
返回:
组件的重量。
Since:
7
setHidePriority
public void setHidePriority(int hidePriority)
设置 MagicLayout 中组件的隐藏优先级。 较小的值表示较高的优先级。
参数:
参数名称 | 参数描述 |
---|---|
hidePriority | 表示组件的隐藏优先级。 |
Since:
7
getHidePriority
public int getHidePriority()
获取 MagicLayout 中组件的隐藏优先级。
返回:
组件的隐藏优先级。
Since:
7
applyToComponent
public void applyToComponent(Component component)
更多建议: