I am unable to change the selector color and other parts of the TimePicker. So far, I can change header color and background but I am unable to change the innercircle and the textcolor.
Change custom theme link.
My code :
<TimePicker
android:id="@+id/tp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:timePickerMode="clock"
android:headerBackground="#565466"
android:amPmBackgroundColor="#500126"
android:numbersBackgroundColor="#57e326"
android:numbersTextColor="#995394"
android:numbersSelectorColor="#675543"
android:textColorSecondary="#897530"
android:textColorPrimary="#359875"
/>
All you have to do is set your accent color in your Activity's theme:
<item name="colorAccent">#3333cc</item>
This will set all the colors for you so you wouldn't mess up the styling.
(This also means that you shouldn't set values like amPmBackgroundColor
on your TimePicker directly, let Android do the things for you.)
If you want to specify all the possible values separately, do the following:
First define this in your Activity's theme:
<item name="android:timePickerStyle">@style/Theme.MyTheme.TimePicker</item>
Then create the appropriate style:
<style name="Theme.MyTheme.TimePicker" parent="android:Widget.Material.Light.TimePicker">
<item name="android:timePickerMode">clock</item>
<item name="android:headerBackground">#ff555555</item>
<item name="android:numbersTextColor">?android:attr/textColorPrimaryActivated</item>
<item name="android:numbersInnerTextColor">?android:attr/textColorSecondaryActivated</item>
<item name="android:numbersSelectorColor">?android:attr/colorControlActivated</item>
<item name="android:numbersBackgroundColor">#ff555555</item>
<item name="android:amPmTextColor">?android:attr/textColorSecondary</item>
</style>
Note that numbersInnerTextColor
is only available from API level 23 and other styles (e.g. headerTextColor
) can't be set (or at least I couldn't make it work).
I'd advise against using the "advanced" mode as the TimePicker should have the same colors as the containing Activity and doing otherwise might impact your UX in a bad way.