9

Before Android N, I can use the code below to instance a spnnier mode datepicker dialog:

new DatePickerDialog(getContext(), AlertDialog.THEME_HOLO_LIGHT, null, 2016, 9, 18);

but the above code is not work on Android N device, it always show the calander mode, is there something different in Android N? How can I instance a spinner mode datepicker dialog?

Pier Giorgio Misley
  • 5,305
  • 4
  • 27
  • 66

1 Answers1

0

Have you tried something like : yourDatePickerDialog.getDatePicker().setCalendarViewShown(false);

cire.boroguies
  • 1,071
  • 9
  • 18