Creating Tiles for Wear OS

Jun 8 2021 · Kotlin 1.5, Android 8, Android Studio 4.2

Part 1: Creating Tiles for Wear OS

05. Add Modifiers to Tweak the Elements

Episode complete

Play next episode

Next
About this episode
Leave a rating/review
See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 04. Add Images to the Tile Next episode: 06. Handle Click Events

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Heads up... You’re accessing parts of this content for free, with some sections shown as obfuscated text.

Heads up... You’re accessing parts of this content for free, with some sections shown as obfuscated text.

Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.

Unlock now

Demo $[==]

Right now the Tile looks very packed and the plus and minus buttons don’t really look like buttons. Let’s tweak the Tile’s appearance.

.setModifiers(
  ModifiersBuilders.Modifiers.builder()
)
ModifiersBuilders.Modifiers.builder()
 .setBackground(
    ModifiersBuilders.Background.builder()
      
    )
    .build()
)
.setColor(
  ColorBuilders.argb(ContextCompat.getColor(this, R.color.colorPrimary))
)
.setCorner(
  ModifiersBuilders.Corner.builder()
    .setRadius(DimensionBuilders.dp(16f))
    .build()
)
.setPadding(
  ModifiersBuilders.Padding.builder()
    .setAll(DimensionBuilders.dp(4f))
    .build()
  )
LayoutElementBuilders.Spacer.builder().setWidth(DimensionBuilders.dp(16f))