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 tworzy niestandardową podklasę mechanizmu renderowania, która implementuje wszystko, co jest potrzebne do rysowania tarczy zegarka.
Aby wyrenderować tarczę zegarka, renderowanie łączy informacje z UserStyle
, informacje o widżetach z ComplicationSlotsManager
, aktualną godzinę i inne informacje o stanie.
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
}
}