TimeValue

data class TimeValue(val hour: Int, val minute: Int)

A plain time-of-day holder used by TimePicker.

The hour is always stored in 24-hour form (0..23) regardless of the display mode of the picker; out-of-range values are coerced.

Parameters

hour

The hour of the day in 24-hour form (0..23).

minute

The minute of the hour (0..59).

Constructors

Link copied to clipboard
constructor(hour: Int, minute: Int)

Properties

Link copied to clipboard
val hour: Int
Link copied to clipboard
val minute: Int