I was testing my app on an Android L emulator, and I noticed that the TimePickerDialog has significantly changed to this:
This doesn't fit with the theme of my app, and I wanted to know if it is possible to get the old TimePickerDialog style when running on Android L.
You can use the TimePickerDialog constructor with theme
parameter to specify the theme.
TimePickerDialog(Context context,
int theme,
TimePickerDialog.OnTimeSetListener callBack,
int hourOfDay,
int minute,
boolean is24HourView)