Search code examples
androidandroid-alertdialog

Remove Title from DatePickerDialog


For some reason, I have two titles in my DatePickerDialog.

[Screenshot](http://i.imgur.com/8rVEjlv.png)

How can I get rid of the white title at the top? This is the code I use to create the Dialog:

datePickerDialog = new DatePickerDialog(ProfileActivity.this, this, year, month, day);
datePickerDialog.getDatePicker().updateDate(year, month - 1, day);
datePickerDialog.show();

Solution

  • datePickerDialog.setTitle("");