LayoutElementBuilders.Row.Builder
public final class LayoutElementBuilders.Row.Builder implements LayoutElementBuilders.LayoutElement.Builder
Builder for Row.
Summary
Public constructors |
|---|
|
Public methods |
|
|---|---|
@NonNull LayoutElementBuilders.Row.Builder |
Adds one item to the list of child elements to place inside this |
@NonNull LayoutElementBuilders.Row |
Builds an instance with values accumulated in this Builder. |
@NonNull LayoutElementBuilders.Row.Builder |
Sets the height of this row. |
@NonNull LayoutElementBuilders.Row.Builder |
Sets |
@NonNull LayoutElementBuilders.Row.Builder |
Sets the vertical alignment of elements inside this row, if they are narrower than the resulting height of the row. |
@NonNull LayoutElementBuilders.Row.Builder |
Sets the vertical alignment of elements inside this row, if they are narrower than the resulting height of the row. |
@NonNull LayoutElementBuilders.Row.Builder |
Sets the width of this row. |
Public methods
public @NonNull LayoutElementBuilders.Row.BuilderaddContent(@NonNull LayoutElementBuilders.LayoutElement content)
Adds one item to the list of child elements to place inside this Row.
build
public @NonNull LayoutElementBuilders.Rowbuild()
Builds an instance with values accumulated in this Builder.
public @NonNull LayoutElementBuilders.Row.BuildersetHeight(@NonNull DimensionBuilders.ContainerDimension height)
Sets the height of this row. If not defined, this will size itself to fit all of its children (i.e. a WrappedDimension).
public @NonNull LayoutElementBuilders.Row.BuildersetModifiers(@NonNull ModifiersBuilders.Modifiers modifiers)
Sets androidx.wear.tiles.ModifiersBuilders.Modifiers for this element.
public @NonNull LayoutElementBuilders.Row.BuildersetVerticalAlignment(int verticalAlignment)
Sets the vertical alignment of elements inside this row, if they are narrower than the resulting height of the row. If not defined, defaults to VERTICAL_ALIGN_CENTER.
public @NonNull LayoutElementBuilders.Row.BuildersetVerticalAlignment(
@NonNull LayoutElementBuilders.VerticalAlignmentProp verticalAlignment
)
Sets the vertical alignment of elements inside this row, if they are narrower than the resulting height of the row. If not defined, defaults to VERTICAL_ALIGN_CENTER.
public @NonNull LayoutElementBuilders.Row.BuildersetWidth(@NonNull DimensionBuilders.ContainerDimension width)
Sets the width of this row. If not defined, this will size itself to fit all of its children (i.e. a WrappedDimension).