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

后端 未结 5 1536
轻奢々
轻奢々 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:41

    You have to create a custom theme and save it in some directories to finally set this theme as the default one for the app

    First, in values add a themes.xml like this:

    
    
        
     
    

    Then, create a directory with the name "values-v11" (Android 3.0+ ) in the res directory and put a themes.xml like this

    
    
        
    
    

    Finally, create a directory with the name "values-v14" (Android 4.0+) in the res directory and create a themes.xml

    
    
        
    
    

    Finally in your manifest.xml

    
    

提交回复
热议问题