I have asked a question concerning the DatePicker's CalendarView here, and alanv's solution works very well with DatePicker's. However, when I tried his solution in TimePicker's, it doesn't work that way.
I want to change the text color of inside the clock. Similar to my last question, I tried adding color accent. To ensure it would work, I added textColor as well.
The v21/styles.xml:
<style name="MyTimePickerTheme" >
<item name="android:colorAccent">@color/myColor</item>
<item name="android:textColor">@color/myTextColor</item>
</style>
However, It does work like DatePicker, any suggestion?