LayoutElementBuilders.Column

Added in 1.0.0
Deprecated in 1.2.0

class LayoutElementBuilders.Column : LayoutElementBuilders.LayoutElement


A column of elements. Each child element will be laid out vertically, one after another (i.e. stacking down). This element will size itself to the smallest size required to hold all of its children (e.g. if it contains three elements sized 10x10, 20x20 and 30x30, the resulting column will be 30x60).

If specified, horizontal_alignment can be used to control the gravity inside the container, affecting the horizontal placement of children whose width are smaller than the resulting column width.

Summary

Public functions

(Mutable)List<LayoutElementBuilders.LayoutElement!>

Gets the list of child elements to place inside this Column.

DimensionBuilders.ContainerDimension?

Gets the height of this column.

LayoutElementBuilders.HorizontalAlignmentProp?

Gets the horizontal alignment of elements inside this column, if they are narrower than the resulting width of the column.

ModifiersBuilders.Modifiers?

Gets androidx.wear.tiles.ModifiersBuilders.Modifiers for this element.

DimensionBuilders.ContainerDimension?

Gets the width of this column.

Public functions

getContents

Added in 1.0.0
Deprecated in 1.2.0
fun getContents(): (Mutable)List<LayoutElementBuilders.LayoutElement!>

Gets the list of child elements to place inside this Column. Intended for testing purposes only.

getHeight

Added in 1.0.0
Deprecated in 1.2.0
fun getHeight(): DimensionBuilders.ContainerDimension?

Gets the height of this column. If not defined, this will size itself to fit all of its children (i.e. a WrappedDimension). Intended for testing purposes only.

getHorizontalAlignment

Added in 1.0.0
Deprecated in 1.2.0
fun getHorizontalAlignment(): LayoutElementBuilders.HorizontalAlignmentProp?

Gets the horizontal alignment of elements inside this column, if they are narrower than the resulting width of the column. If not defined, defaults to HORIZONTAL_ALIGN_CENTER. Intended for testing purposes only.

getModifiers

Added in 1.0.0
Deprecated in 1.2.0
fun getModifiers(): ModifiersBuilders.Modifiers?

Gets androidx.wear.tiles.ModifiersBuilders.Modifiers for this element. Intended for testing purposes only.

getWidth

Added in 1.0.0
Deprecated in 1.2.0
fun getWidth(): DimensionBuilders.ContainerDimension?

Gets the width of this column. If not defined, this will size itself to fit all of its children (i.e. a WrappedDimension). Intended for testing purposes only.