Po skonfigurowaniu projektu i dodaniu klasy implementującej usługę tarczy zegarka możesz zacząć pisać kod, który inicjuje i rysuje niestandardową tarczę zegarka.
Każda tarcza zegarka tworzy niestandardową podklasę renderowania, która implementuje wszystko, co jest potrzebne do jej wyświetlania.
Renderer łączy informacje z UserStyle
, informacje o widżetach z ComplicationSlotsManager
, aktualną godzinę i inne informacje o stanie, aby wyrenderować tarczę zegarka, jak w tym przykładzie:
class CustomCanvasRenderer(
private val context: Context,
surfaceHolder: SurfaceHolder,
watchState: WatchState,
private val complicationSlotsManager: ComplicationSlotsManager,
currentUserStyleRepository: CurrentUserStyleRepository,
canvasType: Int
) : Renderer.CanvasRenderer(
surfaceHolder = surfaceHolder,
currentUserStyleRepository = currentUserStyleRepository,
watchState = watchState,
canvasType = canvasType,
interactiveDrawModeUpdateDelayMillis = 16L
) {
override fun render(canvas: Canvas, bounds: Rect, zonedDateTime: ZonedDateTime) {
// Draw into the canvas
}
override fun renderHighlightLayer(canvas: Canvas, bounds: Rect, zonedDateTime: ZonedDateTime) {
// Draw into the canvas
}
}