Remove Title from DatePickerDialog
I found that for myself:
datePickerDialog.getDatePicker().setMaxDate(c.getTimeInMillis());
and probably for you:
datePickerDialog.getDatePicker().updateDate(year, month - 1, day);
is the culprit. If you leave that line out, you won't have a title.
I'm looking into setting a specific theme tosolve the issue.
-- UPDATE --
Make sure you call .setTitle("");
AFTER you call .getDatePicker().x()
. Otherwise it will not work.
datePickerDialog.setTitle("");