MaterialScope
@MaterialScopeMarker
public class MaterialScope
Receiver scope which is used by all ProtoLayout Material3 components and layout to support opinionated defaults and to provide the global information for styling Material3 components.
The MaterialScope includes:
-
theme, which is used to retrieve the color, typography or shape values.
-
DeviceParameters, which contains screen size, font scale, renderer schema version etc. -
Default usage of system theme, with the option to opt out.
Summary
Public methods |
|
|---|---|
final @NonNull ColorScheme |
Color Scheme used within this scope and its components. |
final @NonNull Context |
|
final @NonNull DeviceParametersBuilders.DeviceParameters |
|
final @NonNull ProtoLayoutScope |
The |
final @NonNull Shapes |
Shapes theme used within this scope and its components. |
final boolean |
Checks whether |
Public methods
getColorScheme
public final @NonNull ColorScheme getColorScheme()
Color Scheme used within this scope and its components.
getDeviceConfiguration
public final @NonNull DeviceParametersBuilders.DeviceParameters getDeviceConfiguration()
getProtoLayoutScope
public final @NonNull ProtoLayoutScope getProtoLayoutScope()
The ProtoLayoutScope for the Tile service, that is responsible for handling internal details of ProtoLayout layouts and Tiles and can be used to create image resources with automatic resources registration.
This field can safely be used when MaterialScope is created with materialScopeWithResources.
| Throws | |
|---|---|
IllegalArgumentException |
When the |
getShapes
public final @NonNull Shapes getShapes()
Shapes theme used within this scope and its components.
hasProtoLayoutScope
public final boolean hasProtoLayoutScope()
Checks whether ProtoLayoutScope exists in this MaterialScope.
It is guaranteed that exists when the MaterialScope is created with materialScopeWithResources.
Extension functions
ButtonGroupKt.buttonGroup
public final @NonNull LayoutElementBuilders.LayoutElement ButtonGroupKt.buttonGroup(
@NonNull MaterialScope receiver,
@NonNull DimensionBuilders.ContainerDimension width,
@NonNull DimensionBuilders.ContainerDimension height,
@Dimension(unit = 0) float spacing,
@NonNull Function1<@NonNull ButtonGroupScope, Unit> content
)
ProtoLayout Material3 component-layout that places its children in a horizontal sequence.
These behave as a group which fill the available space to maximize on screen real estate. The color and size of the child elements should be changed in order to create hierarchy and priority.
The width and height of the Button/Card should be flexible (set to androidx.wear.protolayout.DimensionBuilders.expand or androidx.wear.protolayout.DimensionBuilders.weight) and their proportion should be either equal or weight based. However the buttonGroup displays correctly too if the sizes of elements provided are set to a fixed width/height, although it can lead to more empty space on large screen sizes.
A buttonGroup with more than one row can be created by using multiple buttonGroup and Spacers inside a androidx.wear.protolayout.LayoutElementBuilders.Column:
Column.Builder()
.setWidth(expand())
.setHeight(expand())
.addContent(buttonGroup {...})
.addContent(DEFAULT_SPACER_BETWEEN_BUTTON_GROUPS)
.addContent(buttonGroup {...})
.build()
}
Note that, having more than 2 rows in a Column could lead to too small height of elements that aren't in line with minimum tap target.
See common-layouts/tiles and bestpractices for more visuals and design recommendations.
import androidx.wear.protolayout.DimensionBuilders.expand import androidx.wear.protolayout.DimensionBuilders.weight import androidx.wear.protolayout.material3.CardDefaults.filledTonalCardColors import androidx.wear.protolayout.material3.CardDefaults.filledVariantCardColors import androidx.wear.protolayout.material3.DataCardStyle.Companion.extraLargeDataCardStyle import androidx.wear.protolayout.material3.DataCardStyle.Companion.largeCompactDataCardStyle import androidx.wear.protolayout.material3.button import androidx.wear.protolayout.material3.buttonGroup import androidx.wear.protolayout.material3.icon import androidx.wear.protolayout.material3.iconDataCard import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.material3.textDataCard import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { primaryLayout( mainSlot = { buttonGroup { buttonGroupItem { textDataCard( onClick = clickable, modifier = LayoutModifier.contentDescription("Data Card with text"), width = weight(1f), height = expand(), colors = filledTonalCardColors(), style = extraLargeDataCardStyle(), title = { this.text("1km".layoutString) }, content = { this.text("Run".layoutString) }, secondaryText = { this.text("Nice!".layoutString) }, ) } buttonGroupItem { iconDataCard( onClick = clickable, modifier = LayoutModifier.contentDescription("Data Card with icon"), width = weight(1f), height = expand(), colors = filledTonalCardColors(), style = extraLargeDataCardStyle(), title = { this.text("2km".layoutString) }, secondaryIcon = { icon("id") }, content = { this.text("Run".layoutString) }, ) } buttonGroupItem { textDataCard( onClick = clickable, modifier = LayoutModifier.contentDescription( "Compact Data Card without icon or secondary label" ), width = weight(3f), height = expand(), colors = filledVariantCardColors(), style = largeCompactDataCardStyle(), title = { this.text("10:30".layoutString) }, content = { this.text("PM".layoutString) }, ) } } } ) }
import androidx.wear.protolayout.DimensionBuilders.expand import androidx.wear.protolayout.material3.button import androidx.wear.protolayout.material3.buttonGroup import androidx.wear.protolayout.material3.icon import androidx.wear.protolayout.material3.iconButton import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.material3.textButton import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.background import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { primaryLayout( mainSlot = { buttonGroup { buttonGroupItem { iconButton( onClick = clickable, modifier = LayoutModifier.contentDescription( "Big button with image background" ), width = expand(), height = expand(), iconContent = { icon("id1") }, ) } buttonGroupItem { iconButton( onClick = clickable, modifier = LayoutModifier.contentDescription( "Big button with image background" ), width = expand(), height = expand(), shape = shapes.large, iconContent = { icon("id2") }, ) } buttonGroupItem { textButton( onClick = clickable, modifier = LayoutModifier.contentDescription( "Big button with image background" ), width = expand(), height = expand(), shape = shapes.large, labelContent = { text("Dec".layoutString) }, ) } } } ) }
| Parameters | |
|---|---|
@NonNull DimensionBuilders.ContainerDimension width |
The width of this button group |
@NonNull DimensionBuilders.ContainerDimension height |
The height of this button group |
@Dimension(unit = 0) float spacing |
The amount of spacing between buttons |
@NonNull Function1<@NonNull ButtonGroupScope, Unit> content |
The content for each child. The UX guidance is to use no more than 3 elements within a this button group. |
ButtonKt.avatarButton
public final @NonNull LayoutElementBuilders.LayoutElement ButtonKt.avatarButton(
@NonNull MaterialScope receiver,
@NonNull ModifiersBuilders.Clickable onClick,
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> labelContent,
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> avatarContent,
@NonNull LayoutModifier modifier,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> secondaryLabelContent,
@NonNull DimensionBuilders.ContainerDimension height,
@NonNull ModifiersBuilders.Corner shape,
@NonNull ButtonColors colors,
@NonNull AvatarButtonStyle style,
int horizontalAlignment,
@NonNull ModifiersBuilders.Padding contentPadding
)
Opinionated ProtoLayout Material3 pill shape avatar button that offers up to three slots to take content representing vertically stacked label and secondary label, and an image (avatar) next to it.
Difference from the button is that this one takes an image instead of an icon and spaces the content proportionally, so that edge of the button nicely hugs the avatar image.
The button's colors default to using ColorScheme from the MaterialScope it's defined in, which defaults to dynamicColorScheme, meaning that the colors follow system theme if available on device. If not, or switched off by user, uses fallback ColorScheme defined in its MaterialScope.
See common-layouts/tiles and bestpractices for more visuals and design recommendations.
import androidx.wear.protolayout.material3.avatarButton import androidx.wear.protolayout.material3.avatarImage import androidx.wear.protolayout.material3.button import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription import androidx.wear.protolayout.types.layoutString avatarButton( onClick = clickable(), modifier = LayoutModifier.contentDescription("Pill button"), avatarContent = { avatarImage("id") }, labelContent = { text("Primary label".layoutString) }, secondaryLabelContent = { text("Secondary label".layoutString) }, )
| Parameters | |
|---|---|
@NonNull ModifiersBuilders.Clickable onClick |
Associated |
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> labelContent |
The text slot for content displayed in this button. It is recommended to use default styling that is automatically provided by only calling |
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> avatarContent |
The avatar slot for content displayed in this button. It is recommended to use default styling that is automatically provided by only calling |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. It's highly recommended to set a content description using |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> secondaryLabelContent |
The text slot for content displayed in this button. It is recommended to use default styling that is automatically provided by only calling |
@NonNull DimensionBuilders.ContainerDimension height |
The height of this button. It's highly recommended to set this to |
@NonNull ModifiersBuilders.Corner shape |
Defines the button's shape, in other words the corner radius for this button. If changing these to radius smaller than |
@NonNull ButtonColors colors |
The colors used for this button. If not set, |
@NonNull AvatarButtonStyle style |
The style which provides the attribute values required for constructing this pill shape button and its inner content. It also provides default style for the inner content, that can be overridden by each content slot. |
int horizontalAlignment |
The horizontal placement of the |
@NonNull ModifiersBuilders.Padding contentPadding |
The inner padding used to prevent inner content from being too close to the button's edge. It's highly recommended to keep the default. Only vertical values would be used, as horizontally elements are spaced out proportionally to the buttons width. |
ButtonKt.button
public final @NonNull LayoutElementBuilders.LayoutElement ButtonKt.button(
@NonNull MaterialScope receiver,
@NonNull ModifiersBuilders.Clickable onClick,
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> labelContent,
@NonNull LayoutModifier modifier,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> secondaryLabelContent,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> iconContent,
@NonNull DimensionBuilders.ContainerDimension width,
@NonNull DimensionBuilders.ContainerDimension height,
@NonNull ModifiersBuilders.Corner shape,
@NonNull ButtonColors colors,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> backgroundContent,
@NonNull ButtonStyle style,
int horizontalAlignment,
@NonNull ModifiersBuilders.Padding contentPadding
)
Opinionated ProtoLayout Material3 pill shape button that offers up to three slots to take content representing vertically stacked label and secondary label, and an icon next to it.
The button's colors default to using ColorScheme from the MaterialScope it's defined in, which defaults to dynamicColorScheme, meaning that the colors follow system theme if available on device. If not, or switched off by user, uses fallback ColorScheme defined in its MaterialScope.
See common-layouts/tiles and bestpractices for more visuals and design recommendations.
import androidx.wear.protolayout.DimensionBuilders.expand import androidx.wear.protolayout.material3.button import androidx.wear.protolayout.material3.icon import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { primaryLayout( mainSlot = { button( onClick = clickable, modifier = LayoutModifier.contentDescription("Pill shape button"), width = expand(), height = expand(), labelContent = { text("First label".layoutString) }, secondaryLabelContent = { text("Second label".layoutString) }, iconContent = { icon("id") }, ) } ) }
import androidx.wear.protolayout.DimensionBuilders.expand import androidx.wear.protolayout.LayoutElementBuilders.Box import androidx.wear.protolayout.material3.button import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.background import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription materialScope(context, deviceConfiguration) { primaryLayout( mainSlot = { // Button with custom content inside button( onClick = clickable, modifier = LayoutModifier.contentDescription("Big button with image background") .background(colorScheme.primary), width = expand(), height = expand(), labelContent = { // This can be further built. Box.Builder().build() }, ) } ) }
| Parameters | |
|---|---|
@NonNull ModifiersBuilders.Clickable onClick |
Associated |
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> labelContent |
The text slot for content displayed in this button. It is recommended to use default styling that is automatically provided by only calling |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. It's highly recommended to set a content description using |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> secondaryLabelContent |
The text slot for content displayed in this button. It is recommended to use default styling that is automatically provided by only calling |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> iconContent |
The icon slot for content displayed in this button. It is recommended to use default styling that is automatically provided by only calling |
@NonNull DimensionBuilders.ContainerDimension width |
The width of this button. It's highly recommended to set this to |
@NonNull DimensionBuilders.ContainerDimension height |
The height of this button. It's highly recommended to set this to |
@NonNull ModifiersBuilders.Corner shape |
Defines the button's shape, in other words the corner radius for this button. If changing these to radius smaller than |
@NonNull ButtonColors colors |
The colors used for this button. If not set, |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> backgroundContent |
The background object to be used behind the content in the button. It is recommended to use the default styling that is automatically provided by only calling |
@NonNull ButtonStyle style |
The style which provides the attribute values required for constructing this pill shape button and its inner content. It also provides default style for the inner content, that can be overridden by each content slot. |
int horizontalAlignment |
The horizontal placement of the |
@NonNull ModifiersBuilders.Padding contentPadding |
The inner padding used to prevent inner content from being too close to the button's edge. It's highly recommended to keep the default. |
ButtonKt.compactButton
public final @NonNull LayoutElementBuilders.LayoutElement ButtonKt.compactButton(
@NonNull MaterialScope receiver,
@NonNull ModifiersBuilders.Clickable onClick,
@NonNull LayoutModifier modifier,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> labelContent,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> iconContent,
@NonNull DimensionBuilders.ContainerDimension width,
@NonNull ModifiersBuilders.Corner shape,
@NonNull ButtonColors colors,
int horizontalAlignment,
@NonNull ModifiersBuilders.Padding contentPadding
)
Opinionated ProtoLayout Material3 compact button that offers up to two slots to take horizontally stacked content representing an icon and text next to it.
The button's colors default to using ColorScheme from the MaterialScope it's defined in, which defaults to dynamicColorScheme, meaning that the colors follow system theme if available on device. If not, or switched off by user, uses fallback ColorScheme defined in its MaterialScope.
See common-layouts/tiles and bestpractices for more visuals and design recommendations.
import androidx.wear.protolayout.DimensionBuilders.expand import androidx.wear.protolayout.material3.button import androidx.wear.protolayout.material3.compactButton import androidx.wear.protolayout.material3.icon import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { primaryLayout( mainSlot = { compactButton( onClick = clickable, modifier = LayoutModifier.contentDescription("Compact button"), width = expand(), labelContent = { text("Action".layoutString) }, iconContent = { icon("id") }, ) } ) }
| Parameters | |
|---|---|
@NonNull ModifiersBuilders.Clickable onClick |
Associated |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. It's highly recommended to set a content description using |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> labelContent |
The text slot for content displayed in this button. It is recommended to use default styling that is automatically provided by calling |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> iconContent |
The icon slot for content displayed in this button. It is recommended to use default styling that is automatically provided by only calling |
@NonNull DimensionBuilders.ContainerDimension width |
The width of this button. It's highly recommended to set this to |
@NonNull ModifiersBuilders.Corner shape |
Defines the button's shape, in other words the corner radius for this button. If changing these to radius smaller than |
@NonNull ButtonColors colors |
The colors used for this button. If not set, |
int horizontalAlignment |
The horizontal placement of the |
@NonNull ModifiersBuilders.Padding contentPadding |
The inner padding used to prevent inner content from being too close to the button's edge. It's highly recommended to keep the default. |
ButtonKt.iconButton
public final @NonNull LayoutElementBuilders.LayoutElement ButtonKt.iconButton(
@NonNull MaterialScope receiver,
@NonNull ModifiersBuilders.Clickable onClick,
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> iconContent,
@NonNull LayoutModifier modifier,
@NonNull DimensionBuilders.ContainerDimension width,
@NonNull DimensionBuilders.ContainerDimension height,
@NonNull ModifiersBuilders.Corner shape,
@NonNull ButtonColors colors,
@NonNull IconButtonStyle style,
@NonNull ModifiersBuilders.Padding contentPadding
)
Opinionated ProtoLayout Material3 icon button that offers a single slot to take content representing icon, for example icon.
The button is usually either a circular shape with the same width and height, or highly recommended stadium shape occupying available space with width and height set to expand or weight, usually arranged with the buttonGroup.
The button's colors default to using ColorScheme from the MaterialScope it's defined in, which defaults to dynamicColorScheme, meaning that the colors follow system theme if available on device. If not, or switched off by user, uses fallback ColorScheme defined in its MaterialScope.
See common-layouts/tiles and bestpractices for more visuals and design recommendations.
import androidx.wear.protolayout.DimensionBuilders.expand import androidx.wear.protolayout.material3.button import androidx.wear.protolayout.material3.buttonGroup import androidx.wear.protolayout.material3.icon import androidx.wear.protolayout.material3.iconButton import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.material3.textButton import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.background import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { primaryLayout( mainSlot = { buttonGroup { buttonGroupItem { iconButton( onClick = clickable, modifier = LayoutModifier.contentDescription( "Big button with image background" ), width = expand(), height = expand(), iconContent = { icon("id1") }, ) } buttonGroupItem { iconButton( onClick = clickable, modifier = LayoutModifier.contentDescription( "Big button with image background" ), width = expand(), height = expand(), shape = shapes.large, iconContent = { icon("id2") }, ) } buttonGroupItem { textButton( onClick = clickable, modifier = LayoutModifier.contentDescription( "Big button with image background" ), width = expand(), height = expand(), shape = shapes.large, labelContent = { text("Dec".layoutString) }, ) } } } ) }
| Parameters | |
|---|---|
@NonNull ModifiersBuilders.Clickable onClick |
Associated |
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> iconContent |
The icon slot for content displayed in this button. It is recommended to use default styling that is automatically provided by only calling |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. It's highly recommended to set a content description using |
@NonNull DimensionBuilders.ContainerDimension width |
The width of this button. It's highly recommended to set this to |
@NonNull DimensionBuilders.ContainerDimension height |
The height of this button. It's highly recommended to set this to |
@NonNull ModifiersBuilders.Corner shape |
Defines the button's shape, in other words the corner radius for this button. If changing these to radius smaller than |
@NonNull ButtonColors colors |
The colors used for this button. If not set, |
@NonNull IconButtonStyle style |
The style which provides the attribute values required for constructing this icon button and its inner content. It also provides default style for the inner content, that can be overridden by each content slot. |
@NonNull ModifiersBuilders.Padding contentPadding |
The inner padding used to prevent inner content from being too close to the button's edge. It's highly recommended to keep the default. |
ButtonKt.imageButton
public final @NonNull LayoutElementBuilders.LayoutElement ButtonKt.imageButton(
@NonNull MaterialScope receiver,
@NonNull ModifiersBuilders.Clickable onClick,
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> backgroundContent,
@NonNull LayoutModifier modifier,
@NonNull DimensionBuilders.ContainerDimension width,
@NonNull DimensionBuilders.ContainerDimension height
)
ProtoLayout Material3 clickable image button that doesn't offer additional slots, only image (for example backgroundImage as a background).
The button is usually stadium or circle shaped with fully rounded corners by default. It is highly recommended to set its width and height to fill the available space, by expand or weight for optimal experience across different screen sizes, and use buttonGroup to arrange them.
import androidx.wear.protolayout.DimensionBuilders.expand import androidx.wear.protolayout.material3.backgroundImage import androidx.wear.protolayout.material3.button import androidx.wear.protolayout.material3.imageButton import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.background import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription materialScope(context, deviceConfiguration) { primaryLayout( mainSlot = { imageButton( onClick = clickable, modifier = LayoutModifier.contentDescription("Big button with image background"), width = expand(), height = expand(), backgroundContent = { backgroundImage(protoLayoutResourceId = "id") }, ) } ) }
| Parameters | |
|---|---|
@NonNull ModifiersBuilders.Clickable onClick |
Associated |
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> backgroundContent |
The background object to be used behind the content in the button. It is recommended to use the default styling that is automatically provided by only calling |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. It's highly recommended to set a content description using |
@NonNull DimensionBuilders.ContainerDimension width |
The width of this button. It's highly recommended to set this to |
@NonNull DimensionBuilders.ContainerDimension height |
The height of this button. It's highly recommended to set this to |
ButtonKt.textButton
public final @NonNull LayoutElementBuilders.LayoutElement ButtonKt.textButton(
@NonNull MaterialScope receiver,
@NonNull ModifiersBuilders.Clickable onClick,
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> labelContent,
@NonNull LayoutModifier modifier,
@NonNull DimensionBuilders.ContainerDimension width,
@NonNull DimensionBuilders.ContainerDimension height,
@NonNull ModifiersBuilders.Corner shape,
@NonNull ButtonColors colors,
@NonNull TextButtonStyle style,
@NonNull ModifiersBuilders.Padding contentPadding
)
Opinionated ProtoLayout Material3 text button that offers a single slot to take content representing short text, for example text.
The button is usually either a circular shape with the same width and height, or highly recommended stadium shape occupying available space with width and height set to expand or weight, usually arranged with the buttonGroup.
The button's colors default to using ColorScheme from the MaterialScope it's defined in, which defaults to dynamicColorScheme, meaning that the colors follow system theme if available on device. If not, or switched off by user, uses fallback ColorScheme defined in its MaterialScope.
See common-layouts/tiles and bestpractices for more visuals and design recommendations.
import androidx.wear.protolayout.DimensionBuilders.expand import androidx.wear.protolayout.material3.button import androidx.wear.protolayout.material3.buttonGroup import androidx.wear.protolayout.material3.icon import androidx.wear.protolayout.material3.iconButton import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.material3.textButton import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.background import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { primaryLayout( mainSlot = { buttonGroup { buttonGroupItem { iconButton( onClick = clickable, modifier = LayoutModifier.contentDescription( "Big button with image background" ), width = expand(), height = expand(), iconContent = { icon("id1") }, ) } buttonGroupItem { iconButton( onClick = clickable, modifier = LayoutModifier.contentDescription( "Big button with image background" ), width = expand(), height = expand(), shape = shapes.large, iconContent = { icon("id2") }, ) } buttonGroupItem { textButton( onClick = clickable, modifier = LayoutModifier.contentDescription( "Big button with image background" ), width = expand(), height = expand(), shape = shapes.large, labelContent = { text("Dec".layoutString) }, ) } } } ) }
| Parameters | |
|---|---|
@NonNull ModifiersBuilders.Clickable onClick |
Associated |
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> labelContent |
The text slot for content displayed in this button. It is recommended to use default styling that is automatically provided by only calling |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. It's highly recommended to set a content description using |
@NonNull DimensionBuilders.ContainerDimension width |
The width of this button. It's highly recommended to set this to |
@NonNull DimensionBuilders.ContainerDimension height |
The height of this button. It's highly recommended to set this to |
@NonNull ModifiersBuilders.Corner shape |
Defines the button's shape, in other words the corner radius for this button. If changing these to radius smaller than |
@NonNull ButtonColors colors |
The colors used for this button. If not set, |
@NonNull TextButtonStyle style |
The style which provides the attribute values required for constructing this text button and its inner content. It also provides default style for the inner content, that can be overridden by each content slot. |
@NonNull ModifiersBuilders.Padding contentPadding |
The inner padding used to prevent inner content from being too close to the button's edge. It's highly recommended to keep the default. |
CardKt.appCard
public final @NonNull LayoutElementBuilders.LayoutElement CardKt.appCard(
@NonNull MaterialScope receiver,
@NonNull ModifiersBuilders.Clickable onClick,
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> title,
@NonNull LayoutModifier modifier,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> content,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> avatar,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> label,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> time,
@NonNull DimensionBuilders.ContainerDimension height,
@NonNull ModifiersBuilders.Corner shape,
@NonNull CardColors colors,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> backgroundContent,
@NonNull AppCardStyle style,
@NonNull ModifiersBuilders.Padding contentPadding
)
Opinionated ProtoLayout Material3 app card that offers up to 5 slots, usually text based.
Those are vertically stacked title and content, and additional side slot for a time.
The first row of the card has three slots:
-
a small optional image, such as
avatarImage -
label, which is expected to be a short
text -
time, end aligned.
The second row shows a title, this is expected to be a single row of start aligned text.
The rest of the appCard contains the content which should be text.
The card's colors default to using ColorScheme from the MaterialScope it's defined in, which defaults to dynamicColorScheme, meaning that the colors follow system theme if available on device. If not, or switched off by user, uses fallback ColorScheme defined in its MaterialScope.
See common-layouts/tiles and bestpractices for more visuals and design recommendations.
import androidx.wear.protolayout.DimensionBuilders.expand import androidx.wear.protolayout.material3.AppCardStyle import androidx.wear.protolayout.material3.CardDefaults.filledTonalCardColors import androidx.wear.protolayout.material3.appCard import androidx.wear.protolayout.material3.card import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { primaryLayout( mainSlot = { appCard( onClick = clickable, modifier = LayoutModifier.contentDescription("App Card"), height = expand(), colors = filledTonalCardColors(), style = AppCardStyle.largeAppCardStyle(), title = { text("This is title of the app card".layoutString) }, time = { text("NOW".layoutString) }, label = { text("Label".layoutString) }, content = { text("Content of the Card!".layoutString) }, ) } ) }
| Parameters | |
|---|---|
@NonNull ModifiersBuilders.Clickable onClick |
Associated |
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> title |
A slot for displaying the title of the card, expected to be one line of text. Uses |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. It's highly recommended to set a content description using |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> content |
The optional body content of the card. Uses |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> avatar |
An optional slot in header for displaying small image, such as |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> label |
An optional slot in header for displaying short, label text. Uses |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> time |
An optional slot for displaying the time relevant to the contents of the card, expected to be a short piece of text. Uses |
@NonNull DimensionBuilders.ContainerDimension height |
The height of this card. It's highly recommended to leave this with default value as |
@NonNull ModifiersBuilders.Corner shape |
Defines the card's shape, in other words the corner radius for this card. If changing these to radius smaller than |
@NonNull CardColors colors |
The colors to be used for a background and inner content of this card. If the background image is also specified, the image will be laid out on top of the background color. In case of the fully opaque background image, then the background color will not be shown. Specified colors can be |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> backgroundContent |
The background object to be used behind the content in the card. It is recommended to use the default styling that is automatically provided by only calling |
@NonNull AppCardStyle style |
The style which provides the attribute values required for constructing this title card and its inner content. It also provides default style for the inner content, that can be overridden by each content slot. |
@NonNull ModifiersBuilders.Padding contentPadding |
The inner padding used to prevent inner content from being too close to the card's edge. It's highly recommended to keep the default. |
CardKt.card
public final @NonNull LayoutElementBuilders.LayoutElement CardKt.card(
@NonNull MaterialScope receiver,
@NonNull ModifiersBuilders.Clickable onClick,
@NonNull LayoutModifier modifier,
@NonNull DimensionBuilders.ContainerDimension width,
@NonNull DimensionBuilders.ContainerDimension height,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> backgroundContent,
@NonNull ModifiersBuilders.Padding contentPadding,
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> content
)
ProtoLayout Material3 clickable component card that offers a single slot to take any content.
It can be used as the container for more opinionated Card components that take specific content such as icons, images, primary label, secondary label, etc.
The Card is Rectangle shaped with some rounded corners by default. It is highly recommended to set its width and height to fill the available space, by expand or weight for optimal experience across different screen sizes.
It can be used for displaying any clickable container with additional data, text or graphics.
It is highly recommended to set its height to fill the available space, with expand for optimal experience across different screen sizes.
See common-layouts/tiles and bestpractices for more visuals and design recommendations.
import androidx.wear.protolayout.DimensionBuilders.expand import androidx.wear.protolayout.material3.backgroundImage import androidx.wear.protolayout.material3.card import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.background import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { primaryLayout( mainSlot = { card( onClick = clickable, modifier = LayoutModifier.contentDescription("Card with image background") .clickable(id = "card"), width = expand(), height = expand(), backgroundContent = { backgroundImage(protoLayoutResourceId = "id") }, ) { text("Content of the Card!".layoutString) } } ) }
| Parameters | |
|---|---|
@NonNull ModifiersBuilders.Clickable onClick |
Associated |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. It's highly recommended to set a content description using |
@NonNull DimensionBuilders.ContainerDimension width |
The width of this card. It's highly recommended to set this to |
@NonNull DimensionBuilders.ContainerDimension height |
The height of this card. It's highly recommended to set this to |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> backgroundContent |
The background object to be used behind the content in the card. It is recommended to use the default styling that is automatically provided by only calling |
@NonNull ModifiersBuilders.Padding contentPadding |
The inner padding used to prevent inner content from being too close to the card's edge. It's highly recommended to keep the default. |
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> content |
The inner content to be put inside of this card. |
CardKt.graphicDataCard
public final @NonNull LayoutElementBuilders.LayoutElement CardKt.graphicDataCard(
@NonNull MaterialScope receiver,
@NonNull ModifiersBuilders.Clickable onClick,
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> graphic,
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> title,
@NonNull LayoutModifier modifier,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> content,
@NonNull DimensionBuilders.ContainerDimension height,
@NonNull ModifiersBuilders.Corner shape,
@NonNull CardColors colors,
@NonNull GraphicDataCardStyle style,
int horizontalAlignment,
@NonNull ModifiersBuilders.Padding contentPadding
)
Opinionated ProtoLayout Material3 graphic data card that offers a slot for graphic data such as progress indicator and up to 2 vertically stacked slots, usually for textual description.
It is highly recommended to set its height to fill the available space, with expand for optimal experience across different screen sizes.
The card's colors default to using ColorScheme from the MaterialScope it's defined in, which defaults to dynamicColorScheme, meaning that the colors follow system theme if available on device. If not, or switched off by user, uses fallback ColorScheme defined in its MaterialScope.
See common-layouts/tiles and bestpractices for more visuals and design recommendations.
import androidx.wear.protolayout.DimensionBuilders.expand import androidx.wear.protolayout.material3.CardDefaults.filledVariantCardColors import androidx.wear.protolayout.material3.CircularProgressIndicatorDefaults.filledTonalProgressIndicatorColors import androidx.wear.protolayout.material3.GraphicDataCardStyle.Companion.largeGraphicDataCardStyle import androidx.wear.protolayout.material3.graphicDataCard import androidx.wear.protolayout.material3.icon import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.segmentedCircularProgressIndicator import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { primaryLayout( mainSlot = { graphicDataCard( onClick = clickable, modifier = LayoutModifier.contentDescription("Data Card with graphic"), height = expand(), colors = filledVariantCardColors(), style = largeGraphicDataCardStyle(), title = { text("1,234".layoutString) }, content = { icon("steps") }, graphic = { segmentedCircularProgressIndicator( segmentCount = 5, staticProgress = 0.5F, colors = filledTonalProgressIndicatorColors(), ) }, ) } ) }
| Parameters | |
|---|---|
@NonNull ModifiersBuilders.Clickable onClick |
Associated |
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> graphic |
A slot for displaying graphic data, such as |
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> title |
A slot for displaying the title of the card, expected to be one line of text. Uses |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. It's highly recommended to set a content description using |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> content |
The optional body content of the card. Uses |
@NonNull DimensionBuilders.ContainerDimension height |
The width of this card. It's highly recommended to set this to |
@NonNull ModifiersBuilders.Corner shape |
Defines the card's shape, in other words the corner radius for this card. If changing these to radius smaller than |
@NonNull CardColors colors |
The colors to be used for a background and inner content of this card. Specified colors can be |
@NonNull GraphicDataCardStyle style |
The style which provides the attribute values required for constructing this data card and its inner content. It also provides default style for the inner content, that can be overridden by each content slot. It is highly recommended to use one of |
int horizontalAlignment |
The horizontal placement of the |
@NonNull ModifiersBuilders.Padding contentPadding |
The inner padding used to prevent inner content from being too close to the card's edge. It's highly recommended to keep the default. |
CardKt.iconDataCard
public final @NonNull LayoutElementBuilders.LayoutElement CardKt.iconDataCard(
@NonNull MaterialScope receiver,
@NonNull ModifiersBuilders.Clickable onClick,
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> title,
@NonNull LayoutModifier modifier,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> content,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> secondaryIcon,
@NonNull DimensionBuilders.ContainerDimension width,
@NonNull DimensionBuilders.ContainerDimension height,
@NonNull ModifiersBuilders.Corner shape,
@NonNull CardColors colors,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> backgroundContent,
@NonNull DataCardStyle style,
@NonNull TitleContentPlacementInDataCard titleContentPlacement,
@NonNull ModifiersBuilders.Padding contentPadding
)
Opinionated ProtoLayout Material3 data card that offers up to 3 vertically stacked slots, usually text or numeral based, with icon.
Slots can have multiple placements, depending on their presence and titleContentPlacement:
-
If
secondaryIconare set, it will be placed first whentitleContentPlacementis set toTitleContentPlacementInDataCard.Bottom, or last iftitleContentPlacementis set toTitleContentPlacementInDataCard.Top. -
If
secondaryIconis not set, thistextDataCardis considered ascompactdata card, with title and content only.
This card works well in buttonGroup with cards width and height set to expand.
The card's colors default to using ColorScheme from the MaterialScope it's defined in, which defaults to dynamicColorScheme, meaning that the colors follow system theme if available on device. If not, or switched off by user, uses fallback ColorScheme defined in its MaterialScope.
See common-layouts/tiles and bestpractices for more visuals and design recommendations.
import androidx.wear.protolayout.DimensionBuilders.expand import androidx.wear.protolayout.DimensionBuilders.weight import androidx.wear.protolayout.material3.CardDefaults.filledTonalCardColors import androidx.wear.protolayout.material3.CardDefaults.filledVariantCardColors import androidx.wear.protolayout.material3.DataCardStyle.Companion.extraLargeDataCardStyle import androidx.wear.protolayout.material3.DataCardStyle.Companion.largeCompactDataCardStyle import androidx.wear.protolayout.material3.button import androidx.wear.protolayout.material3.buttonGroup import androidx.wear.protolayout.material3.icon import androidx.wear.protolayout.material3.iconDataCard import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.material3.textDataCard import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { primaryLayout( mainSlot = { buttonGroup { buttonGroupItem { textDataCard( onClick = clickable, modifier = LayoutModifier.contentDescription("Data Card with text"), width = weight(1f), height = expand(), colors = filledTonalCardColors(), style = extraLargeDataCardStyle(), title = { this.text("1km".layoutString) }, content = { this.text("Run".layoutString) }, secondaryText = { this.text("Nice!".layoutString) }, ) } buttonGroupItem { iconDataCard( onClick = clickable, modifier = LayoutModifier.contentDescription("Data Card with icon"), width = weight(1f), height = expand(), colors = filledTonalCardColors(), style = extraLargeDataCardStyle(), title = { this.text("2km".layoutString) }, secondaryIcon = { icon("id") }, content = { this.text("Run".layoutString) }, ) } buttonGroupItem { textDataCard( onClick = clickable, modifier = LayoutModifier.contentDescription( "Compact Data Card without icon or secondary label" ), width = weight(3f), height = expand(), colors = filledVariantCardColors(), style = largeCompactDataCardStyle(), title = { this.text("10:30".layoutString) }, content = { this.text("PM".layoutString) }, ) } } } ) }
| Parameters | |
|---|---|
@NonNull ModifiersBuilders.Clickable onClick |
Associated |
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> title |
A slot for displaying the title of the card, expected to be one line of text. Uses |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. It's highly recommended to set a content description using |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> content |
The optional body content of the card. Uses |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> secondaryIcon |
An optional slot for displaying small icon, such as |
@NonNull DimensionBuilders.ContainerDimension width |
The width of this card. It's highly recommended to set this to |
@NonNull DimensionBuilders.ContainerDimension height |
The height of this card. It's highly recommended to set this to |
@NonNull ModifiersBuilders.Corner shape |
Defines the card's shape, in other words the corner radius for this card. If changing these to radius smaller than |
@NonNull CardColors colors |
The colors to be used for a background and inner content of this card. If the background image is also specified, the image will be laid out on top of the background color. In case of the fully opaque background image, then the background color will not be shown. Specified colors can be |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> backgroundContent |
The background object to be used behind the content in the card. It is recommended to use the default styling that is automatically provided by only calling |
@NonNull DataCardStyle style |
The style which provides the attribute values required for constructing this data card and its inner content. It also provides default style for the inner content, that can be overridden by each content slot. It is highly recommended to use one of |
@NonNull TitleContentPlacementInDataCard titleContentPlacement |
The placement of the |
@NonNull ModifiersBuilders.Padding contentPadding |
The inner padding used to prevent inner content from being too close to the card's edge. It's highly recommended to keep the default. |
CardKt.textDataCard
public final @NonNull LayoutElementBuilders.LayoutElement CardKt.textDataCard(
@NonNull MaterialScope receiver,
@NonNull ModifiersBuilders.Clickable onClick,
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> title,
@NonNull LayoutModifier modifier,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> content,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> secondaryText,
@NonNull DimensionBuilders.ContainerDimension width,
@NonNull DimensionBuilders.ContainerDimension height,
@NonNull ModifiersBuilders.Corner shape,
@NonNull CardColors colors,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> backgroundContent,
@NonNull DataCardStyle style,
@NonNull ModifiersBuilders.Padding contentPadding
)
Opinionated ProtoLayout Material3 data card that offers up to 3 vertically stacked slots, usually text or numeral based.
This card works well in buttonGroup with cards width and height is set to expand.
The card's colors default to using ColorScheme from the MaterialScope it's defined in, which defaults to dynamicColorScheme, meaning that the colors follow system theme if available on device. If not, or switched off by user, uses fallback ColorScheme defined in its MaterialScope.
See common-layouts/tiles and bestpractices for more visuals and design recommendations.
import androidx.wear.protolayout.DimensionBuilders.expand import androidx.wear.protolayout.DimensionBuilders.weight import androidx.wear.protolayout.material3.CardDefaults.filledTonalCardColors import androidx.wear.protolayout.material3.CardDefaults.filledVariantCardColors import androidx.wear.protolayout.material3.DataCardStyle.Companion.extraLargeDataCardStyle import androidx.wear.protolayout.material3.DataCardStyle.Companion.largeCompactDataCardStyle import androidx.wear.protolayout.material3.button import androidx.wear.protolayout.material3.buttonGroup import androidx.wear.protolayout.material3.icon import androidx.wear.protolayout.material3.iconDataCard import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.material3.textDataCard import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { primaryLayout( mainSlot = { buttonGroup { buttonGroupItem { textDataCard( onClick = clickable, modifier = LayoutModifier.contentDescription("Data Card with text"), width = weight(1f), height = expand(), colors = filledTonalCardColors(), style = extraLargeDataCardStyle(), title = { this.text("1km".layoutString) }, content = { this.text("Run".layoutString) }, secondaryText = { this.text("Nice!".layoutString) }, ) } buttonGroupItem { iconDataCard( onClick = clickable, modifier = LayoutModifier.contentDescription("Data Card with icon"), width = weight(1f), height = expand(), colors = filledTonalCardColors(), style = extraLargeDataCardStyle(), title = { this.text("2km".layoutString) }, secondaryIcon = { icon("id") }, content = { this.text("Run".layoutString) }, ) } buttonGroupItem { textDataCard( onClick = clickable, modifier = LayoutModifier.contentDescription( "Compact Data Card without icon or secondary label" ), width = weight(3f), height = expand(), colors = filledVariantCardColors(), style = largeCompactDataCardStyle(), title = { this.text("10:30".layoutString) }, content = { this.text("PM".layoutString) }, ) } } } ) }
| Parameters | |
|---|---|
@NonNull ModifiersBuilders.Clickable onClick |
Associated |
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> title |
A slot for displaying the title of the card, expected to be one line of text. Uses |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. It's highly recommended to set a content description using |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> content |
The optional body content of the card. Uses |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> secondaryText |
An optional slot for displaying short, secondary text. Uses |
@NonNull DimensionBuilders.ContainerDimension width |
The width of this card. It's highly recommended to set this to |
@NonNull DimensionBuilders.ContainerDimension height |
The height of this card. It's highly recommended to set this to |
@NonNull ModifiersBuilders.Corner shape |
Defines the card's shape, in other words the corner radius for this card. If changing these to radius smaller than |
@NonNull CardColors colors |
The colors to be used for a background and inner content of this card. If the background image is also specified, the image will be laid out on top of the background color. In case of the fully opaque background image, then the background color will not be shown. Specified colors can be |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> backgroundContent |
The background object to be used behind the content in the card. It is recommended to use the default styling that is automatically provided by only calling |
@NonNull DataCardStyle style |
The style which provides the attribute values required for constructing this data card and its inner content. It also provides default style for the inner content, that can be overridden by each content slot. It is highly recommended to use one of |
@NonNull ModifiersBuilders.Padding contentPadding |
The inner padding used to prevent inner content from being too close to the card's edge. It's highly recommended to keep the default. |
CardKt.titleCard
public final @NonNull LayoutElementBuilders.LayoutElement CardKt.titleCard(
@NonNull MaterialScope receiver,
@NonNull ModifiersBuilders.Clickable onClick,
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> title,
@NonNull LayoutModifier modifier,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> content,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> time,
@NonNull DimensionBuilders.ContainerDimension height,
@NonNull ModifiersBuilders.Corner shape,
@NonNull CardColors colors,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> backgroundContent,
@NonNull TitleCardStyle style,
@NonNull ModifiersBuilders.Padding contentPadding,
int horizontalAlignment
)
Opinionated ProtoLayout Material3 title card that offers 1 to 3 slots, usually text based.
Those are vertically stacked title and content, and additional side slot for a time.
It is highly recommended to set its height to fill the available space, with expand for optimal experience across different screen sizes.
The card's colors default to using ColorScheme from the MaterialScope it's defined in, which defaults to dynamicColorScheme, meaning that the colors follow system theme if available on device. If not, or switched off by user, uses fallback ColorScheme defined in its MaterialScope.
See common-layouts/tiles and bestpractices for more visuals and design recommendations.
import androidx.wear.protolayout.DimensionBuilders.expand import androidx.wear.protolayout.material3.CardDefaults.filledVariantCardColors import androidx.wear.protolayout.material3.TitleCardStyle.Companion.largeTitleCardStyle import androidx.wear.protolayout.material3.card import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.material3.titleCard import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { primaryLayout( mainSlot = { titleCard( onClick = clickable, modifier = LayoutModifier.contentDescription("Title Card"), height = expand(), colors = filledVariantCardColors(), style = largeTitleCardStyle(), title = { text("This is title of the title card".layoutString) }, time = { text("NOW".layoutString) }, content = { text("Content of the Card!".layoutString) }, ) } ) }
| Parameters | |
|---|---|
@NonNull ModifiersBuilders.Clickable onClick |
Associated |
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> title |
A slot for displaying the title of the card, expected to be one or two lines of text. Uses |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. It's highly recommended to set a content description using |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> content |
The optional body content of the card. Uses |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> time |
An optional slot for displaying the time relevant to the contents of the card, expected to be a short piece of text. Uses |
@NonNull DimensionBuilders.ContainerDimension height |
The height of this card. It's highly recommended to set this to |
@NonNull ModifiersBuilders.Corner shape |
Defines the card's shape, in other words the corner radius for this card. If changing these to radius smaller than |
@NonNull CardColors colors |
The colors to be used for a background and inner content of this card. If the background image is also specified, the image will be laid out on top of the background color. In case of the fully opaque background image, then the background color will not be shown. Specified colors can be |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> backgroundContent |
The background object to be used behind the content in the card. It is recommended to use the default styling that is automatically provided by only calling |
@NonNull TitleCardStyle style |
The style which provides the attribute values required for constructing this title card and its inner content. It also provides default style for the inner content, that can be overridden by each content slot. |
@NonNull ModifiersBuilders.Padding contentPadding |
The inner padding used to prevent inner content from being too close to the card's edge. It's highly recommended to keep the default. |
int horizontalAlignment |
The horizontal alignment of |
CircularProgressIndicatorKt.circularProgressIndicator
public final @NonNull LayoutElementBuilders.Box CircularProgressIndicatorKt.circularProgressIndicator(
@NonNull MaterialScope receiver,
float staticProgress,
DynamicBuilders.DynamicFloat dynamicProgress,
@NonNull LayoutModifier modifier,
float startAngleDegrees,
float endAngleDegrees,
@Dimension(unit = 0) float strokeWidth,
@Dimension(unit = 0) float gapSize,
@NonNull ProgressIndicatorColors colors,
@NonNull DimensionBuilders.ContainerDimension size
)
ProtoLayout Material3 design circular progress indicator.
Note that, the proper implementation of this component requires a ProtoLayout renderer with version equal to or above 1.403. When the renderer is lower than 1.403, this component will automatically fallback to an implementation with reduced features, without support for expandable size, and start/end transition.
This component consumes 3 animation quotas when dynamicProgress is specified with animation by the caller. It is highly recommend to use the recommendedAnimationSpec to animate the progress.
The progress indicator's colors default to using ColorScheme from the MaterialScope it's defined in, which defaults to dynamicColorScheme, meaning that the colors follow system theme if available on device. If not, or switched off by user, uses fallback ColorScheme defined in its MaterialScope.
See common-layouts/tiles and bestpractices for more visuals and design recommendations.
import androidx.wear.protolayout.DimensionBuilders.dp import androidx.wear.protolayout.expression.DynamicBuilders.DynamicFloat import androidx.wear.protolayout.material3.CircularProgressIndicatorDefaults import androidx.wear.protolayout.material3.CircularProgressIndicatorDefaults.filledVariantProgressIndicatorColors import androidx.wear.protolayout.material3.circularProgressIndicator import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.text materialScope(context, deviceParameters) { circularProgressIndicator( dynamicProgress = DynamicFloat.animate( 0.0F, 1.1F, CircularProgressIndicatorDefaults.recommendedAnimationSpec, ), startAngleDegrees = 200F, endAngleDegrees = 520F, colors = filledVariantProgressIndicatorColors(), size = dp(85F), ) }
| Parameters | |
|---|---|
float staticProgress |
The static progress of this progress indicator where 0 represent no progress and 1 represents completion. Progress above 1 is also allowed. If |
DynamicBuilders.DynamicFloat dynamicProgress |
The dynamic progress of this progress indicator where 0 represent no progress and 1 represents completion. Progress above 1 is also allowed. If not provided, the |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. It's highly recommended to set a content description using |
float startAngleDegrees |
The starting position of the progress arc, measured clockwise in degrees from the 12 o'clock position. |
float endAngleDegrees |
The ending position of the progress arc, measured clockwise in degrees from 12 o'clock position. Its value must be bigger than |
@Dimension(unit = 0) float strokeWidth |
The stroke width for the progress indicator. The recommended values are |
@Dimension(unit = 0) float gapSize |
The size in dp of the gap between the ends of the progress indicator and the track. The stroke end caps are not included in this distance. |
@NonNull ProgressIndicatorColors colors |
|
@NonNull DimensionBuilders.ContainerDimension size |
The bounding box size of this progress indicator, applies to both width and height. The indicator arc and track arc are located on the largest circle that can be inscribed inside. It is highly recommended for the progress indicator in a graphics card to have its size as |
| Throws | |
|---|---|
IllegalArgumentException |
When |
CircularProgressIndicatorKt.segmentedCircularProgressIndicator
public final @NonNull LayoutElementBuilders.Box CircularProgressIndicatorKt.segmentedCircularProgressIndicator(
@NonNull MaterialScope receiver,
@IntRange(from = 1) int segmentCount,
float staticProgress,
DynamicBuilders.DynamicFloat dynamicProgress,
@NonNull LayoutModifier modifier,
float startAngleDegrees,
float endAngleDegrees,
@Dimension(unit = 0) float strokeWidth,
@Dimension(unit = 0) float gapSize,
@NonNull ProgressIndicatorColors colors,
@NonNull DimensionBuilders.ContainerDimension size
)
ProtoLayout Material3 design segmented circular progress indicator.
A segmented variant of circularProgressIndicator that is divided into equally sized segments.
Note that, the proper implementation of this component requires a ProtoLayout renderer with version equal to or above 1.403. When the renderer is lower than 1.403, this component will automatically fallback to an implementation with reduced features, without support for multiple segments, expandable size, and start/end transition.
This component consumes 2 animation quotas when dynamicProgress is specified with animation by the caller. It is highly recommend to use the recommendedAnimationSpec to animate the progress.
The progress indicator's colors default to using ColorScheme from the MaterialScope it's defined in, which defaults to dynamicColorScheme, meaning that the colors follow system theme if available on device. If not, or switched off by user, uses fallback ColorScheme defined in its MaterialScope.
See common-layouts/tiles and bestpractices for more visuals and design recommendations.
import androidx.wear.protolayout.DimensionBuilders.dp import androidx.wear.protolayout.expression.DynamicBuilders.DynamicFloat import androidx.wear.protolayout.material3.CircularProgressIndicatorDefaults import androidx.wear.protolayout.material3.CircularProgressIndicatorDefaults.filledVariantProgressIndicatorColors import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.segmentedCircularProgressIndicator import androidx.wear.protolayout.material3.text materialScope(context, deviceParameters) { segmentedCircularProgressIndicator( segmentCount = 5, dynamicProgress = DynamicFloat.animate( 0.0F, 1.1F, CircularProgressIndicatorDefaults.recommendedAnimationSpec, ), startAngleDegrees = 200F, endAngleDegrees = 520F, colors = filledVariantProgressIndicatorColors(), size = dp(85F), ) }
| Parameters | |
|---|---|
@IntRange(from = 1) int segmentCount |
Number of equal segments that the progress indicator should be divided into. Has to be a number greater than or equal to 1. |
float staticProgress |
The static progress of this progress indicator where 0 represent no progress and 1 represents completion. Progress above 1 is also allowed. If |
DynamicBuilders.DynamicFloat dynamicProgress |
The dynamic progress of this progress indicator where 0 represent no progress and 1 represents completion. Progress above 1 is also allowed. If not provided, the |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. It's highly recommended to set a content description using |
float startAngleDegrees |
The starting position of the progress arc, measured clockwise in degrees from the 12 o'clock position. |
float endAngleDegrees |
The ending position of the progress arc, measured clockwise in degrees from 12 o'clock position. This value must be bigger than |
@Dimension(unit = 0) float strokeWidth |
The stroke width for the progress indicator. The recommended values are |
@Dimension(unit = 0) float gapSize |
The size in dp of the gap between the ends of the progress indicator and the track. The stroke end caps are not included in this distance. |
@NonNull ProgressIndicatorColors colors |
|
@NonNull DimensionBuilders.ContainerDimension size |
The bounding box size of this progress indicator, applies to both width and height. The indicator arc and track arc are located on the largest circle that can be inscribed inside. It is highly recommended for the progress indicator in |
| Throws | |
|---|---|
IllegalArgumentException |
When |
EdgeButtonKt.iconEdgeButton
public final @NonNull LayoutElementBuilders.LayoutElement EdgeButtonKt.iconEdgeButton(
@NonNull MaterialScope receiver,
@NonNull ModifiersBuilders.Clickable onClick,
@NonNull LayoutModifier modifier,
@NonNull ButtonColors colors,
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> iconContent
)
ProtoLayout Material3 component edge button that offers a single slot to take an icon or similar round, small content.
The edge button is intended to be used at the bottom of a round screen. It has a special shape with its bottom almost follows the screen's curvature. It has fixed height, and takes 1 line of icon. This button represents the most important action on the screen, and it must occupy the whole horizontal space in its position as well as being anchored to the screen bottom.
This component is not intended to be used with an image background.
The button's colors default to using ColorScheme from the MaterialScope it's defined in, which defaults to dynamicColorScheme, meaning that the colors follow system theme if available on device. If not, or switched off by user, uses fallback ColorScheme defined in its MaterialScope.
See common-layouts/tiles and bestpractices for more visuals and design recommendations.
import androidx.wear.protolayout.material3.button import androidx.wear.protolayout.material3.icon import androidx.wear.protolayout.material3.iconEdgeButton import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription materialScope(context, deviceConfiguration) { iconEdgeButton( onClick = clickable, modifier = LayoutModifier.contentDescription("Description of a button"), ) { icon(protoLayoutResourceId = "id") } }
| Parameters | |
|---|---|
@NonNull ModifiersBuilders.Clickable onClick |
Associated |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. It's highly recommended to set a content description using |
@NonNull ButtonColors colors |
The colors used for this button. If not set, |
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> iconContent |
The icon slot for content displayed in this button. It is recommended to use default styling that is automatically provided by only calling |
EdgeButtonKt.textEdgeButton
public final @NonNull LayoutElementBuilders.LayoutElement EdgeButtonKt.textEdgeButton(
@NonNull MaterialScope receiver,
@NonNull ModifiersBuilders.Clickable onClick,
@NonNull LayoutModifier modifier,
@NonNull ButtonColors colors,
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> labelContent
)
ProtoLayout Material3 component edge button that offers a single slot to take a text or similar long and wide content.
The edge button is intended to be used at the bottom of a round screen. It has a special shape with its bottom almost follows the screen's curvature. It has fixed height, and takes 1 line of text. This button represents the most important action on the screen, and it must occupy the whole horizontal space in its position as well as being anchored to the screen bottom.
This component is not intended to be used with an image background.
The button's colors default to using ColorScheme from the MaterialScope it's defined in, which defaults to dynamicColorScheme, meaning that the colors follow system theme if available on device. If not, or switched off by user, uses fallback ColorScheme defined in its MaterialScope.
See common-layouts/tiles and bestpractices for more visuals and design recommendations.
import androidx.wear.protolayout.material3.button import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.material3.textEdgeButton import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { textEdgeButton( onClick = clickable, modifier = LayoutModifier.contentDescription("Description of a button"), ) { text("Hello".layoutString) } }
| Parameters | |
|---|---|
@NonNull ModifiersBuilders.Clickable onClick |
Associated |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. It's highly recommended to set a content description using |
@NonNull ButtonColors colors |
The colors used for this button. If not set, |
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> labelContent |
The label slot for content displayed in this button. It is recommended to use default styling that is automatically provided by only calling |
IconKt.icon
public final @NonNull LayoutElementBuilders.LayoutElement IconKt.icon(
@NonNull MaterialScope receiver,
@NonNull String protoLayoutResourceId,
@NonNull DimensionBuilders.ImageDimension width,
@NonNull DimensionBuilders.ImageDimension height,
@NonNull LayoutColor tintColor
)
Returns the icon components with the defined style.
Material components provide proper defaults for this icon. In order to take advantage of those, this should be used with the resource ID only: icon("id").
| Parameters | |
|---|---|
@NonNull String protoLayoutResourceId |
The protolayout resource id of the icon. Note that, this is not an Android resource id. |
@NonNull DimensionBuilders.ImageDimension width |
The width of the icon. |
@NonNull DimensionBuilders.ImageDimension height |
The height of the icon. |
@NonNull LayoutColor tintColor |
The color used to tint the icon. |
IconKt.icon
public final @NonNull LayoutElementBuilders.LayoutElement IconKt.icon(
@NonNull MaterialScope receiver,
@NonNull ResourceBuilders.ImageResource resource,
String protoLayoutResourceId,
@NonNull DimensionBuilders.ImageDimension width,
@NonNull DimensionBuilders.ImageDimension height,
@NonNull LayoutColor tintColor
)
Returns the icon components with the defined style which will be automatically registered as a resource.
Material components provide proper defaults for this icon. In order to take advantage of those, this should be used with the resource ID only: icon(imageResource).
Note that, by using this method, there's no need to register resource for Tiles in androidx.wear.tiles.TileService.onTileResourcesRequest.
| Parameters | |
|---|---|
@NonNull ResourceBuilders.ImageResource resource |
An Image resource, used in the layout in the place of this element. |
String protoLayoutResourceId |
The optional protolayout resource id of the icon. |
@NonNull DimensionBuilders.ImageDimension width |
The width of the icon. |
@NonNull DimensionBuilders.ImageDimension height |
The height of the icon. |
@NonNull LayoutColor tintColor |
The color used to tint the icon. |
| Throws | |
|---|---|
IllegalStateException |
if this method is called without |
ImageKt.avatarImage
public final @NonNull LayoutElementBuilders.LayoutElement ImageKt.avatarImage(
@NonNull MaterialScope receiver,
@NonNull String protoLayoutResourceId,
@NonNull DimensionBuilders.ImageDimension width,
@NonNull DimensionBuilders.ImageDimension height,
@NonNull LayoutModifier modifier,
int contentScaleMode
)
Returns the avatar image with the defined style.
Material components such as appCard provide proper defaults for the small avatar image. In order to take advantage of those defaults, this should be used with the resource ID only: avatarImage("id").
| Parameters | |
|---|---|
@NonNull String protoLayoutResourceId |
The protolayout resource id of the image. Node that, this is not an Android resource id. |
@NonNull DimensionBuilders.ImageDimension width |
The width of an image. Usually, a small image that fit into the component's slot. |
@NonNull DimensionBuilders.ImageDimension height |
The height of an image. Usually, a small image that fit into the component's slot. |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. |
int contentScaleMode |
The content scale mode for the image to define how image will adapt to the given size |
ImageKt.avatarImage
public final @NonNull LayoutElementBuilders.LayoutElement ImageKt.avatarImage(
@NonNull MaterialScope receiver,
@NonNull ResourceBuilders.ImageResource resource,
String protoLayoutResourceId,
@NonNull DimensionBuilders.ImageDimension width,
@NonNull DimensionBuilders.ImageDimension height,
@NonNull LayoutModifier modifier,
int contentScaleMode
)
Returns the avatar image with the defined style which will be automatically registered as a resource.
Material components such as appCard provide proper defaults for the small avatar image. In order to take advantage of those defaults, this should be used with the resource ID only: avatarImage(imageResource).
Note that, by using this method, there's no need to register resource for Tiles in androidx.wear.tiles.TileService.onTileResourcesRequest.
| Parameters | |
|---|---|
@NonNull ResourceBuilders.ImageResource resource |
An Image resource, used in the layout in the place of this element. |
String protoLayoutResourceId |
The optional protolayout resource id of the icon. |
@NonNull DimensionBuilders.ImageDimension width |
The width of an image. Usually, a small image that fit into the component's slot. |
@NonNull DimensionBuilders.ImageDimension height |
The height of an image. Usually, a small image that fit into the component's slot. |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. |
int contentScaleMode |
The content scale mode for the image to define how image will adapt to the given size |
| Throws | |
|---|---|
IllegalStateException |
if this method is called without |
ImageKt.backgroundImage
public final @NonNull LayoutElementBuilders.LayoutElement ImageKt.backgroundImage(
@NonNull MaterialScope receiver,
@NonNull String protoLayoutResourceId,
@NonNull LayoutModifier modifier,
@NonNull DimensionBuilders.ImageDimension width,
@NonNull DimensionBuilders.ImageDimension height,
LayoutColor overlayColor,
int contentScaleMode
)
Returns the image background with the defined style.
Material components provide proper defaults for the background image. In order to take advantage of those defaults, this should be used with the resource ID only: backgroundImage("id").
This image can have optional overlay on top of it, that is usually a dark color with opacity. This is highly recommended to be added when there's additional content like text on top of image, to improve readability.
If this is used in imageButton as image button with no other content, overlayColor can be omitted, and the overlay color on top of the image would be ignored.
| Parameters | |
|---|---|
@NonNull String protoLayoutResourceId |
The protolayout resource id of the image. Node that, this is not an Android resource id. |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. |
@NonNull DimensionBuilders.ImageDimension width |
The width of an image. Usually, this matches the width of the parent component this is used in. |
@NonNull DimensionBuilders.ImageDimension height |
The height of an image. Usually, this matches the height of the parent component this is used in. |
LayoutColor overlayColor |
The color used to provide the overlay over the image for better readability. It's recommended to use |
int contentScaleMode |
The content scale mode for the image to define how image will adapt to the given size |
ImageKt.backgroundImage
public final @NonNull LayoutElementBuilders.LayoutElement ImageKt.backgroundImage(
@NonNull MaterialScope receiver,
@NonNull ResourceBuilders.ImageResource resource,
String protoLayoutResourceId,
@NonNull LayoutModifier modifier,
@NonNull DimensionBuilders.ImageDimension width,
@NonNull DimensionBuilders.ImageDimension height,
LayoutColor overlayColor,
int contentScaleMode
)
Returns the image background with the defined style which will be automatically registered as a resource.
Material components provide proper defaults for the background image. In order to take advantage of those defaults, this should be used with the resource ID only: backgroundImage(imageResource).
Note that, by using this method, there's no need to register resource for Tiles in androidx.wear.tiles.TileService.onTileResourcesRequest.
This image can have optional overlay on top of it, that is usually a dark color with opacity. This is highly recommended to be added when there's additional content like text on top of image, to improve readability.
If this is used in imageButton as image button with no other content, overlayColor can be omitted, and the overlay color on top of the image would be ignored.
| Parameters | |
|---|---|
@NonNull ResourceBuilders.ImageResource resource |
An Image resource, used in the layout in the place of this element. |
String protoLayoutResourceId |
The optional protolayout resource id of the icon. |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. |
@NonNull DimensionBuilders.ImageDimension width |
The width of an image. Usually, this matches the width of the parent component this is used in. |
@NonNull DimensionBuilders.ImageDimension height |
The height of an image. Usually, this matches the height of the parent component this is used in. |
LayoutColor overlayColor |
The color used to provide the overlay over the image for better readability. It's recommended to use |
int contentScaleMode |
The content scale mode for the image to define how image will adapt to the given size |
| Throws | |
|---|---|
IllegalStateException |
if this method is called without |
PrimaryLayoutKt.primaryLayout
public final @NonNull LayoutElementBuilders.LayoutElement PrimaryLayoutKt.primaryLayout(
@NonNull MaterialScope receiver,
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> mainSlot,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> titleSlot,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> bottomSlot,
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> labelForBottomSlot,
ModifiersBuilders.Clickable onClick,
@NonNull PrimaryLayoutMargins margins
)
ProtoLayout Material3 full screen layout that represents a suggested Material3 layout style that is responsive and takes care of the elements placement, together with the recommended margin and padding applied.
This layout is meant to occupy the whole screen, so nothing else should be added on top of it. It is highly recommended to use this directly as the first root layout element in the androidx.wear.tiles.Material3TileService.
On the top, there is an icon that will be automatically placed by the system, followed by the optional title slot. The icon slot needs to be reserved for the whole ProtoLayout Layout and no other content should be added at the top of the screen as it will be overlapped with the system placed icon.
At the bottom, there is an optional fixed slot for either {@link EdgeButton} as a main action or small non tappable content.
The middle of the layout is main content, that will fill the available space. For the best results across different screen sizes, it's recommended that this content's dimension are also DimensionBuilders.expand or DimensionBuilders.weight. Additional content in the main one can be added after a 225dp breakpoint.
See slots, common-layouts/tiles and bestpractices for more visuals and design recommendations.
import androidx.wear.protolayout.LayoutElementBuilders import androidx.wear.protolayout.LayoutElementBuilders.Box import androidx.wear.protolayout.LayoutElementBuilders.LayoutElement import androidx.wear.protolayout.ModifiersBuilders import androidx.wear.protolayout.material3.PrimaryLayoutMargins.Companion.MAX_PRIMARY_LAYOUT_MARGIN import androidx.wear.protolayout.material3.button import androidx.wear.protolayout.material3.buttonGroup import androidx.wear.protolayout.material3.icon import androidx.wear.protolayout.material3.iconEdgeButton import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { primaryLayout( titleSlot = { text("App title".layoutString) }, mainSlot = { buttonGroup { // To be populated with proper components buttonGroupItem { LayoutElementBuilders.Box.Builder() .setModifiers( ModifiersBuilders.Modifiers.Builder() .setBackground( ModifiersBuilders.Background.Builder() .setCorner(shapes.small) .build() ) .build() ) .build() } } }, // Adjust margins as the corner of the inner content is on the square side. margins = MAX_PRIMARY_LAYOUT_MARGIN, bottomSlot = { iconEdgeButton( onClick = clickable, modifier = LayoutModifier.contentDescription("Description"), ) { icon("id") } }, ) }
import androidx.wear.protolayout.DimensionBuilders.expand import androidx.wear.protolayout.material3.backgroundImage import androidx.wear.protolayout.material3.card import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.background import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { primaryLayout( mainSlot = { card( onClick = clickable, modifier = LayoutModifier.contentDescription("Card with image background") .clickable(id = "card"), width = expand(), height = expand(), backgroundContent = { backgroundImage(protoLayoutResourceId = "id") }, ) { text("Content of the Card!".layoutString) } } ) }
import androidx.wear.protolayout.DimensionBuilders.expand import androidx.wear.protolayout.material3.button import androidx.wear.protolayout.material3.buttonGroup import androidx.wear.protolayout.material3.icon import androidx.wear.protolayout.material3.iconButton import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.material3.textButton import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.background import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { primaryLayout( mainSlot = { buttonGroup { buttonGroupItem { iconButton( onClick = clickable, modifier = LayoutModifier.contentDescription( "Big button with image background" ), width = expand(), height = expand(), iconContent = { icon("id1") }, ) } buttonGroupItem { iconButton( onClick = clickable, modifier = LayoutModifier.contentDescription( "Big button with image background" ), width = expand(), height = expand(), shape = shapes.large, iconContent = { icon("id2") }, ) } buttonGroupItem { textButton( onClick = clickable, modifier = LayoutModifier.contentDescription( "Big button with image background" ), width = expand(), height = expand(), shape = shapes.large, labelContent = { text("Dec".layoutString) }, ) } } } ) }
import androidx.wear.protolayout.DimensionBuilders.expand import androidx.wear.protolayout.material3.CardDefaults.filledVariantCardColors import androidx.wear.protolayout.material3.CircularProgressIndicatorDefaults.filledTonalProgressIndicatorColors import androidx.wear.protolayout.material3.GraphicDataCardStyle.Companion.largeGraphicDataCardStyle import androidx.wear.protolayout.material3.graphicDataCard import androidx.wear.protolayout.material3.icon import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.segmentedCircularProgressIndicator import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.clickable import androidx.wear.protolayout.modifiers.contentDescription import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { primaryLayout( mainSlot = { graphicDataCard( onClick = clickable, modifier = LayoutModifier.contentDescription("Data Card with graphic"), height = expand(), colors = filledVariantCardColors(), style = largeGraphicDataCardStyle(), title = { text("1,234".layoutString) }, content = { icon("steps") }, graphic = { segmentedCircularProgressIndicator( segmentCount = 5, staticProgress = 0.5F, colors = filledTonalProgressIndicatorColors(), ) }, ) } ) }
import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.clearSemantics import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { primaryLayout( titleSlot = { text("App title".layoutString, modifier = LayoutModifier.clearSemantics()) }, mainSlot = { text("Main content".layoutString) }, bottomSlot = { text("Bottom slot".layoutString, modifier = LayoutModifier.clearSemantics()) }, labelForBottomSlot = { text("Bottom label".layoutString, modifier = LayoutModifier.clearSemantics()) }, ) }
| Parameters | |
|---|---|
@NonNull Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> mainSlot |
The main, central content for this layout. It's recommended for this content to fill the available width and height for the best result across different screen size. This layout places proper padding to prevent content from being cropped by the screen. Note that depending on the corner shapes and different elements on the screen, there might be a need to change padding on some of the elements in this slot. The content passed here can also have an additional content value added to it, after |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> titleSlot |
The app title in the top slot, just below the icon. This should be one line of |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> bottomSlot |
The content for bottom slot in this layout, that will be anchored to the bottom edge of the screen. This should be either a small non tappable content such as Text with optional label for it or tappable main action with |
Function1<@NonNull MaterialScope, @NonNull LayoutElementBuilders.LayoutElement> labelForBottomSlot |
The label displayed just above the |
ModifiersBuilders.Clickable onClick |
The clickable action for whole layout. If any area (outside of other added tappable components) is clicked, it will fire the associated action. |
@NonNull PrimaryLayoutMargins margins |
The customized outer margin that will be applied as following: * It is highly recommended to use provided constants for these margins - |
TextKt.text
public final @NonNull LayoutElementBuilders.LayoutElement TextKt.text(
@NonNull MaterialScope receiver,
@NonNull LayoutString text,
@NonNull LayoutModifier modifier,
int typography,
@NonNull LayoutColor color,
boolean italic,
boolean underline,
boolean scalable,
int maxLines,
int alignment,
int overflow,
@RequiresSchemaVersion(major = 1, minor = 400) @NonNull List<@NonNull LayoutElementBuilders.FontSetting> settings,
@NonNull List<@NonNull Float> incrementsForTypographySize
)
ProtoLayout component that represents text object holding any information.
There are pre-defined typography styles that can be obtained from Materials token system in Typography.
This text, when added to the titleSlot, bottomSlot and labelForBottomSlot in primaryLayout, is considered as important for accessibility automatically and gets read out by the screen reader even without content description provided in the modifier. This behavior can be removed with LayoutModifier.clearSemantics if not desired. In all other places, this text is considered as not important for accessibility by default unless content description is specifically provided in the modifier.
import androidx.wear.protolayout.material3.Typography import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { text(text = "Hello Material3".layoutString, typography = Typography.DISPLAY_LARGE) }
import androidx.wear.protolayout.expression.DynamicBuilders.DynamicString import androidx.wear.protolayout.material3.Typography import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.types.LayoutString import androidx.wear.protolayout.types.asLayoutConstraint materialScope(context, deviceConfiguration) { this.text( text = LayoutString( "Static", DynamicString.constant("Dynamic"), "LongestConstraint".asLayoutConstraint(), ), typography = Typography.DISPLAY_LARGE, color = colorScheme.tertiary, underline = true, maxLines = 5, ) }
import androidx.wear.protolayout.material3.Typography import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { text( text = "Hello Material3".layoutString, typography = Typography.DISPLAY_LARGE, incrementsForTypographySize = listOf(-4f, -2f, 2f), ) }
import androidx.wear.protolayout.material3.materialScope import androidx.wear.protolayout.material3.primaryLayout import androidx.wear.protolayout.material3.text import androidx.wear.protolayout.modifiers.LayoutModifier import androidx.wear.protolayout.modifiers.clearSemantics import androidx.wear.protolayout.types.layoutString materialScope(context, deviceConfiguration) { primaryLayout( titleSlot = { text("App title".layoutString, modifier = LayoutModifier.clearSemantics()) }, mainSlot = { text("Main content".layoutString) }, bottomSlot = { text("Bottom slot".layoutString, modifier = LayoutModifier.clearSemantics()) }, labelForBottomSlot = { text("Bottom label".layoutString, modifier = LayoutModifier.clearSemantics()) }, ) }
| Parameters | |
|---|---|
@NonNull LayoutString text |
The text content for this component. |
@NonNull LayoutModifier modifier |
Modifiers to set to this element. |
int typography |
The typography from |
@NonNull LayoutColor color |
The color to be applied to this text. It is recommended to use predefined default styles created by each component or |
boolean italic |
Whether text should be displayed as italic. |
boolean underline |
Whether text should be displayed as underlined. |
boolean scalable |
Whether text should scale with the user font size. |
int maxLines |
The maximum number of lines that text can occupy. |
int alignment |
The horizontal alignment of the multiple lines of text or one line of text when text overflows. |
int overflow |
The overflow strategy when text doesn't have enough space to be shown. |
@RequiresSchemaVersion(major = 1, minor = 400) @NonNull List<@NonNull LayoutElementBuilders.FontSetting> settings |
The collection of font settings to be applied. If more than one Setting with the same axis tag is specified, the first one will be used. Supported settings depend on the font used and renderer version. Each default typography will apply appropriate default setting axes for it ( |
@NonNull List<@NonNull Float> incrementsForTypographySize |
The collection increments for the given |