I want to restrict a DatePickerDialog to a minimum value of tomorrow. When I put the code that I show below, the restriction works. However, title text containing the date appears like a header. How can I fix this?
This is my code:
Calendar tempDate = Calendar.getInstance();
tempDate.add(Calendar.DAY_OF_MONTH, 1);
toDatePickerDialog.getDatePicker().setMinDate(tempDate.getTimeInMillis());
and the image: