How to change the default color of DatePicker and TimePicker dialog in Android?

后端 未结 5 1528
轻奢々
轻奢々 2020-12-02 23:04

Is there any way to change the default color of DatePicker and TimePicker dialog?

This is the code I tried



        
5条回答
  •  半阙折子戏
    2020-12-02 23:40

    The best way to change the picker dialog is by adding custom style to it.

    
    
    TimePickerDialog timePicker = new TimePickerDialog(mContext, R.style.TimePickerTheme, fromListener, hour, min, false);
    

    Worked perfectly for me.

提交回复
热议问题