Datepicker gives time not between exception
问题 I'm using a datepicker and want to set the min date to today and the max date to today one year ahead. I do this like: datePickerDialog.getDatePicker().setMinDate(System.currentTimeMillis() - 1000); cal.add(Calendar.YEAR, 1); datePickerDialog.getDatePicker().setMaxDate(cal.getTimeInMillis()); When I don't do - 1000 then I get another exception: java.lang.IllegalArgumentException: fromDate: Sat Apr 11 23:59:59 CEST 2015 does not precede toDate: Sat Apr 11 08:24:19 CEST 2015 thats because the