Search code examples
android-dialogandroid-datepickerdatepickerdialog

How to remove unneccesary View behind DatePickerDialog?


I implemented this example from here. There in that example you can see he is running with a dialog style like this old style for DatePickerDialog without border

When I use this, I can clearly see an additional view behind that dialog: date picker dialog with border

How can I remove that additional view behind MY date picker dialog?


Solution

  • Try:

    dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));