ClockSelection
The selection configuration for the clock dialog.
Inheritors
Types
Link copied to clipboard
class HoursMinutes(val withButtonView: Boolean = false, val extraButton: SelectionButton? = null, val onExtraButtonClick: () -> Unit? = null, val negativeButton: SelectionButton? = BaseConstants.DEFAULT_NEGATIVE_BUTTON, val onNegativeClick: () -> Unit? = null, val positiveButton: SelectionButton = BaseConstants.DEFAULT_POSITIVE_BUTTON, val onPositiveClick: (hours: Int, minutes: Int) -> Unit) : ClockSelection
Select a time with hours and minutes.
Link copied to clipboard
class HoursMinutesSeconds(val withButtonView: Boolean = false, val extraButton: SelectionButton? = null, val onExtraButtonClick: () -> Unit? = null, val negativeButton: SelectionButton? = BaseConstants.DEFAULT_NEGATIVE_BUTTON, val onNegativeClick: () -> Unit? = null, val positiveButton: SelectionButton = BaseConstants.DEFAULT_POSITIVE_BUTTON, val onPositiveClick: (hours: Int, minutes: Int, seconds: Int) -> Unit) : ClockSelection
Select a time with hours, minutes and seconds.