---
title: "TimePickerDisplayMode"
description: "Represents the display mode for the content of a [TimePickerDialog].

Defines the different ways a user can interact with the time picker, such as using a visual
clock-like picker or entering the time via text input."
type: "class"
---

<div class='type'>Class</div>


<a id='references'></a>

<div class='sourceset sourceset-common'>Common</div>


```kotlin
value class TimePickerDisplayMode internal constructor(internal val value: Int)
```


Represents the display mode for the content of a `TimePickerDialog`.

Defines the different ways a user can interact with the time picker, such as using a visual
clock-like picker or entering the time via text input.


## Companion Object

#### Properties

<div class='sourceset sourceset-common'>Common</div>


```kotlin
val Picker = TimePickerDisplayMode(0)
```


Time picker input mode



<div class='sourceset sourceset-common'>Common</div>


```kotlin
val Input = TimePickerDisplayMode(1)
```


Time text input mode





