gregkorossy / DateTimePicker

Material themed DateTimePickers from the Android framework for all API levels (API 14+)
Apache License 2.0
73 stars 17 forks source link

i want to show timepicker in spinner mode . can you guide for same ? #11

Open nitin123sangani opened 3 years ago

gregkorossy commented 3 years ago

You could set the styling attribute TimePicker.timePickerMode to "spinner" that forces the dialog to use the spinners instead of the clock face. Here's an example (haven't tested it):

<resources>
    <style name="AppTheme" parent="Theme.MaterialComponents.Light.DarkActionBar">
        <item name="timePickerStyle">@style/MyTimePicker</item>
    </style>

    <style name="MyTimePicker" parent="@style/Widget.Material.TimePicker">
        <item name="timePickerMode">spinner</item>
    </style>
</resources>