How to change TimePicker lines color between choosed number in Appcompat theme? The lines are blue, but i need orange lines.
I use TimePickerDialog with ContextThemeWrapper.
TimePickerDialog timePicker = new TimePickerDialog(
new ContextThemeWrapper(getActivity(), R.style.timePicker),
this, hour, minute, DateFormat.is24HourFormat(getActivity()));
and style
<style name="timePicker">
<item name="android:divider">@drawable/cab_background_top_play</item>
</style>
but the line have other id maybe. I'm not sure to use drawable or color only.
Thanks in advance