I need to change the background white color of calendarDatePicker in android. I have tried so many references in SO. but nothing worked for me. So please share with me if you have any ideas. I know this is a duplicate question. but my requirement is completely different. that is why i ask the question here. need to change the light gray color to what color I want
this is my calendar activity
public void calenderPicker() {
Calendar date = Calendar.getInstance();
CalendarDatePickerDialog calendarDatePickerDialog = CalendarDatePickerDialog.newInstance(Personal.this, date.get(Calendar.YEAR), date.get(Calendar.MONTH),
date.get(Calendar.DAY_OF_MONTH));
calendarDatePickerDialog.show(getFragmentManager(), FRAG_TAG_DATE_PICKER);
}
this is my onDateset ()
@Override
public void onDateSet(CalendarDatePickerDialog calendarDatePickerDialog, int year, int monthOfYear, int dayOfMonth) {
}

source
share