Change DatePicker header text color

后端 未结 3 829
予麋鹿
予麋鹿 2020-12-10 18:34

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

3条回答
  •  佛祖请我去吃肉
    2020-12-10 19:26

    Well I have no clue what's the parent theme that you have for your Date Picker theme. Let's say you have a custom theme for your Date Picker like below,

     
    

    Feel free to use your own colors and code(I copied code from this) and it will do the job!

    new DatePickerDialog(MainActivity.this, R.style.yourCustomStyle, new DatePickerDialog.OnDateSetListener() {
        @Override
        public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) {
          
        }
    }, 2015, 02, 26).show();
    

    Image : android:textColorPrimaryInverse with Theme.AppCompat.Dialog

提交回复
热议问题