Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android API 21 - TimePicker widget

I've got a problem with the TimePicker widget on API 21. Until API 19 the TimePicker was an up-/down-list like iOS, but in 21+ it's round, like the one in the calendar app.

How can I use the old one in 21+, because it breaks my design, if it is the new widget.

like image 365
mars3142 Avatar asked Nov 14 '14 09:11

mars3142


People also ask

What is TimePicker in Android?

android.widget.TimePicker. A widget for selecting the time of day, in either 24-hour or AM/PM mode. For a dialog using this view, see TimePickerDialog .


1 Answers

You can specify the spinner-style time picker by setting the timePickerMode attribute to "spinner". The default value on Material is "clock".

<TimePicker
    ...
    android:timePickerMode="spinner" />
like image 64
alanv Avatar answered Oct 07 '22 18:10

alanv