鸿蒙OS SlideDrawer.LayoutConfig
SlideDrawer.LayoutConfig
java.lang.Object
|---ohos.agp.components.ComponentContainer.LayoutConfig
|---|---ohos.agp.components.SlideDrawer.LayoutConfig
public static class SlideDrawer.LayoutConfig
extends ComponentContainer.LayoutConfig
配置 SlideDrawer 的布局参数,包括宽度、高度、边距、SlideDirection 和 DisplayMode。
Since:
5
字段摘要
修饰符和类型 | 字段 | 描述 |
---|---|---|
SlideDrawer.SlideDirection | direction | 指示方向值。 |
从类 ohos.agp.components.ComponentContainer.LayoutConfig 继承的字段 |
---|
height, MATCH_CONTENT, MATCH_PARENT, width |
构造函数摘要
构造函数 | 描述 |
---|---|
LayoutConfig() | 用于创建 LayoutConfig 实例的默认构造函数,其中已为 MATCH_CONTENT 设置了默认宽度和高度。 |
LayoutConfig(int width, int height) | 用于创建具有指定布局宽度和高度的 LayoutConfig 实例的构造函数。 |
LayoutConfig(int width, int height, SlideDrawer.SlideDirection direction) | 用于创建具有布局的指定宽度、高度和对齐参数的 LayoutConfig 实例的构造函数。 |
LayoutConfig(ComponentContainer.LayoutConfig source) | 用于使用源布局的参数(宽度、高度和边距)创建 LayoutConfig 实例的构造函数。 |
LayoutConfig(SlideDrawer.LayoutConfig source) | 一个构造函数,用于使用源布局的参数(宽度、高度、边距、SlideDirection 和 DisplayMode)创建 LayoutConfig 实例。 |
LayoutConfig(Context context, AttrSet attrSet) | 用于根据上下文和属性集创建 LayoutConfig 实例的构造函数。 |
方法总结
从类 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 |
字段详细信息
direction
public SlideDrawer.SlideDirection direction
指示方向值。
Since:
5
构造函数详细信息
LayoutConfig
public LayoutConfig()
用于创建 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 | 表示宽度,可以是 ComponentContainer.LayoutConfig.MATCH_PARENT 或 ComponentContainer.LayoutConfig.MATCH_CONTENT。 |
height | 表示高度,可以是 ComponentContainer.LayoutConfig.MATCH_PARENT 或 ComponentContainer.LayoutConfig.MATCH_CONTENT。 |
Since:
5
LayoutConfig
public LayoutConfig(int width, int height, SlideDrawer.SlideDirection direction)
用于创建具有布局的指定宽度、高度和对齐参数的 LayoutConfig 实例的构造函数。
参数:
参数名称 | 参数描述 |
---|---|
width | 表示宽度,可以是 ComponentContainer.LayoutConfig.MATCH_PARENT 或 ComponentContainer.LayoutConfig.MATCH_CONTENT。 |
height | 表示高度,可以是 ComponentContainer.LayoutConfig.MATCH_PARENT 或 ComponentContainer.LayoutConfig.MATCH_CONTENT。 |
direction | 指示 SlideDirection 值。 |
Since:
5
LayoutConfig
public LayoutConfig(SlideDrawer.LayoutConfig source)
一个构造函数,用于使用源布局的参数(宽度、高度、边距、SlideDirection 和 DisplayMode)创建 LayoutConfig 实例。
参数:
参数名称 | 参数描述 |
---|---|
source | 表示源布局的参数。 |
Since:
5
LayoutConfig
public LayoutConfig(ComponentContainer.LayoutConfig source)
用于使用源布局的参数(宽度、高度和边距)创建 LayoutConfig 实例的构造函数。
参数:
参数名称 | 参数描述 |
---|---|
source | 表示源布局的参数。 |
Since:
5
更多建议: