Change color of TimePicker (RadialTimePickerView)?

后端 未结 1 850
夕颜
夕颜 2021-01-06 03:12

How do I change the number/picker-color of the TimePicker/RadialTimePickerView? I can see, that the RadialTimePickerView sets its color internal by using

fi         


        
相关标签:
1条回答
  • 2021-01-06 04:05

    More or less, as Saket commented, I need to append my styles.xml:

    <style name="myTimePickerStyle" parent="@android:style/Widget.Material.Light.TimePicker">
        <item name="android:numbersTextColor">#ffffff</item>
        <item name="android:numbersBackgroundColor">@color/timepicker_header</item>
        <item name="android:numbersSelectorColor">#88000000</item>
        <item name="android:headerBackground">@color/timepicker_header</item>
    </style>
    
    <style name="AppTheme" parent="AppBaseTheme">
        <item name="android:timePickerDialogTheme">@style/myTimePickerDialogStyle</item>
    </style>
    
    0 讨论(0)
提交回复
热议问题