if i use TimePicker
/TimePickerDialog
in my app i'm getting timePickerMode="spinner"
styled widget though what i'm looking for is timePickerMode="clock"
. this is the style I've done
<style name="timePicker_dialog parent="android:Theme.Material.Light">
<item name="timePickerMode">clock</item>
</style>
and I've set this res as the style in the TimePicker
via it's TimePickerDialog()
, butt i'm still getting the spinner. is it device dependent? my phone is running v4.4.4? if not, what am i missing here. thanks!