I have a datepicker that\'s showing a header on Lollipop, it looks like this
I want to either change the color of the big date in the header from black to white, or
Try this, it might help you:
Edit your styles.xml
as:
And add below lines to your code:
new DatePickerDialog(MainActivity.this, R.style.DialogTheme, new DatePickerDialog.OnDateSetListener() {
@Override
public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) {
//DO SOMETHING
}
}, 2015, 02, 26).show();