Remove Title from DatePickerDialog

前端 未结 6 1409
误落风尘
误落风尘 2020-12-10 02:57

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

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

6条回答
  •  隐瞒了意图╮
    2020-12-10 03:15

    datePickerDialog = new DatePickerDialog(ProfileActivity.this, this, year, month, day);
    datePickerDialog.getDatePicker().setMinDate(System.currentTimeMillis());
    datePickerDialog.setTitle("");
    datePickerDialog.show();
    

    your should add datePickerDialog.getDatePicker().setMinDate(System.currentTimeMillis()); and then add datePickerDialog.setTitle("");

    this type of sequence to remove top white background header

提交回复
热议问题