Привет, я хочу настроить мой DatePickerDialog
, и вместо кнопок внизу (показано на рисунке ниже) я просто хочу сделать синий текст.
Here is how i created DatePickerDialog
private val birthdayDate by lazy {
Calendar.getInstance()
}
private val datePicker by lazy {
DatePickerDialog(
context,
R.style.MyDatePickerDialogTheme,
this,
birthdayDate.get(Calendar.YEAR),
birthdayDate.get(Calendar.MONTH),
birthdayDate.get(Calendar.DAY_OF_MONTH)
).also {
it.datePicker.maxDate = Calendar.getInstance().timeInMillis
}
}
Then i just call show method to display the dialog. I think problem is somewhere in my style
, but i can not find where. Any help will be highly appreciated.
@ color / colorPrimary