W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
java.lang.Object
|---ohos.agp.components.ComponentContainer.LayoutConfig
|---|---ohos.agp.components.AdaptiveBoxLayout.LayoutConfig
public static class AdaptiveBoxLayout.LayoutConfig
extends ComponentContainer.LayoutConfig
為 AdaptiveBoxLayout 實(shí)例中的子組件定義布局參數(shù),包括它們的寬度、高度、邊距和重力。
修飾符和類(lèi)型 | 字段 | 描述 |
---|---|---|
int | alignment | 表示組件的對(duì)齊值。 |
從類(lèi) ohos.agp.components.ComponentContainer.LayoutConfig 繼承的字段 |
---|
height, MATCH_CONTENT, MATCH_PARENT, width |
構(gòu)造函數(shù) | 描述 |
---|---|
LayoutConfig() | 默認(rèn)構(gòu)造函數(shù)用于通過(guò)將寬度和高度設(shè)置為默認(rèn)值 MATCH_CONTENT 來(lái)創(chuàng)建 AdaptiveBoxLayout.LayoutConfig 實(shí)例。 |
LayoutConfig(int width, int height) | 用于通過(guò)指定寬度和高度來(lái)創(chuàng)建 AdaptiveBoxLayout.LayoutConfig 實(shí)例的構(gòu)造函數(shù)。 |
LayoutConfig(int width, int height, int alignment) | 用于通過(guò)指定寬度、高度和重力來(lái)創(chuàng)建 AdaptiveBoxLayout.LayoutConfig 實(shí)例的構(gòu)造函數(shù)。 |
LayoutConfig(AdaptiveBoxLayout.LayoutConfig source) | 一個(gè)構(gòu)造函數(shù),用于通過(guò)從現(xiàn)有實(shí)例中提取寬度、高度、邊距和重力設(shè)置來(lái)創(chuàng)建 AdaptiveBoxLayout.LayoutConfig 實(shí)例。 |
LayoutConfig(ComponentContainer.LayoutConfig source) | 用于通過(guò)從現(xiàn)有實(shí)例中提取寬度、高度和邊距設(shè)置來(lái)創(chuàng)建 AdaptiveBoxLayout.LayoutConfig 實(shí)例的構(gòu)造函數(shù)。 |
LayoutConfig(Context context, AttrSet attrSet) | 用于根據(jù)上下文和屬性集創(chuàng)建 AdaptiveBoxLayout.LayoutConfig 實(shí)例的構(gòu)造函數(shù)。 |
從類(lèi) 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 |
從類(lèi) java.lang.Object 繼承的方法 |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
public int alignment
表示組件的對(duì)齊值。 僅支持水平方向。
public LayoutConfig()
默認(rèn)構(gòu)造函數(shù)用于通過(guò)將寬度和高度設(shè)置為默認(rèn)值 MATCH_CONTENT 來(lái)創(chuàng)建 AdaptiveBoxLayout.LayoutConfig 實(shí)例。
public LayoutConfig(int width, int height)
用于通過(guò)指定寬度和高度來(lái)創(chuàng)建 AdaptiveBoxLayout.LayoutConfig 實(shí)例的構(gòu)造函數(shù)。
參數(shù):
參數(shù)名稱(chēng) | 參數(shù)描述 |
---|---|
width | 表示寬度,可以是具體的值,ComponentContainer.LayoutConfig.MATCH_PARENT,或者ComponentContainer.LayoutConfig.MATCH_CONTENT。 |
height | 表示高度,可以是特定值,ComponentContainer.LayoutConfig.MATCH_PARENT,或ComponentContainer.LayoutConfig.MATCH_CONTENT。 |
public LayoutConfig(int width, int height, int alignment)
用于通過(guò)指定寬度、高度和重力來(lái)創(chuàng)建 AdaptiveBoxLayout.LayoutConfig 實(shí)例的構(gòu)造函數(shù)。
參數(shù):
參數(shù)名稱(chēng) | 參數(shù)描述 |
---|---|
width | 表示寬度,可以是具體的值,ComponentContainer.LayoutConfig.MATCH_PARENT,或者ComponentContainer.LayoutConfig.MATCH_CONTENT。 |
height | 表示高度,可以是特定值,ComponentContainer.LayoutConfig.MATCH_PARENT,或ComponentContainer.LayoutConfig.MATCH_CONTENT。 |
alignment | 表示對(duì)齊值。 |
public LayoutConfig(Context context, AttrSet attrSet)
用于根據(jù)上下文和屬性集創(chuàng)建 AdaptiveBoxLayout.LayoutConfig 實(shí)例的構(gòu)造函數(shù)。
參數(shù):
參數(shù)名稱(chēng) | 參數(shù)描述 |
---|---|
context | 指示應(yīng)用程序上下文。 |
attrSet | 指示要使用的屬性集。 |
public LayoutConfig(ComponentContainer.LayoutConfig source)
用于通過(guò)從現(xiàn)有實(shí)例中提取寬度、高度和邊距設(shè)置來(lái)創(chuàng)建 AdaptiveBoxLayout.LayoutConfig 實(shí)例的構(gòu)造函數(shù)。
參數(shù):
參數(shù)名稱(chēng) | 參數(shù)描述 |
---|---|
source | 表示現(xiàn)有實(shí)例的參數(shù)。 |
public LayoutConfig(AdaptiveBoxLayout.LayoutConfig source)
一個(gè)構(gòu)造函數(shù),用于通過(guò)從現(xiàn)有實(shí)例中提取寬度、高度、邊距和重力設(shè)置來(lái)創(chuàng)建 AdaptiveBoxLayout.LayoutConfig 實(shí)例。
參數(shù):
參數(shù)名稱(chēng) | 參數(shù)描述 |
---|---|
source | 表示現(xiàn)有實(shí)例的參數(shù)。 |
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: