LayoutElementBuilders.Arc


@RequiresSchemaVersion(major = 1, minor = 0)
class LayoutElementBuilders.Arc : LayoutElementBuilders.LayoutElement


An arc container. This container will fill itself to a circle, which fits inside its parent container, and all of its children will be placed on that circle. The fields anchor_angle and anchor_type can be used to specify where to draw children within this circle.

Summary

Nested types

Builder for Arc.

Public functions

DimensionBuilders.DegreesProp?

Gets the angle for the anchor, used with anchor_type to determine where to draw children.

LayoutElementBuilders.ArcAnchorTypeProp?

Gets how to align the contents of this container relative to anchor_angle.

LayoutElementBuilders.ArcDirectionProp?

Gets defines the direction in which child elements are laid out.

(Mutable)List<LayoutElementBuilders.ArcLayoutElement!>

Gets contents of this container.

ModifiersBuilders.Modifiers?

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

LayoutElementBuilders.VerticalAlignmentProp?

Gets vertical alignment of elements within the arc.

String

Public functions

getAnchorAngle

Added in 1.0.0
fun getAnchorAngle(): DimensionBuilders.DegreesProp?

Gets the angle for the anchor, used with anchor_type to determine where to draw children. Note that 0 degrees is the 12 o clock position on a device, and the angle sweeps clockwise. If not defined, defaults to 0 degrees.

Values do not have to be clamped to the range 0-360; values less than 0 degrees will sweep anti-clockwise (i.e. -90 degrees is equivalent to 270 degrees), and values >360 will be be placed at X mod 360 degrees.

While this field is statically accessible from 1.0, it's only bindable since version 1.2 and renderers supporting version 1.2 will use the dynamic value (if set).

getAnchorType

Added in 1.0.0
fun getAnchorType(): LayoutElementBuilders.ArcAnchorTypeProp?

Gets how to align the contents of this container relative to anchor_angle. If not defined, defaults to ARC_ANCHOR_CENTER.

getArcDirection

Added in 1.2.0-alpha01
fun getArcDirection(): LayoutElementBuilders.ArcDirectionProp?

Gets defines the direction in which child elements are laid out. If not set, defaults to ARC_DIRECTION_NORMAL.

getContents

Added in 1.0.0
fun getContents(): (Mutable)List<LayoutElementBuilders.ArcLayoutElement!>

Gets contents of this container.

getVerticalAlign

Added in 1.0.0
fun getVerticalAlign(): LayoutElementBuilders.VerticalAlignmentProp?

Gets vertical alignment of elements within the arc. If the Arc's thickness is larger than the thickness of the element being drawn, this controls whether the element should be drawn towards the inner or outer edge of the arc, or drawn in the center. If not defined, defaults to VERTICAL_ALIGN_CENTER.

toString

fun toString(): String